]> git.ipfire.org Git - people/ms/u-boot.git/blame - MAKEALL
AT91: fix at91sam9g45.h to include USB Host defines
[people/ms/u-boot.git] / MAKEALL
CommitLineData
f2352877 1#!/bin/bash
0777eafb
WD
2# Tool mainly for U-Boot Quality Assurance: build one or more board
3# configurations with minimal verbosity, showing only warnings and
4# errors.
0777eafb 5
d8e392d9
MF
6usage()
7{
8 # if exiting with 0, write to stdout, else write to stderr
9 local ret=${1:-0}
10 [ "${ret}" -eq 1 ] && exec 1>&2
11 cat <<-EOF
12 Usage: MAKEALL [options] [--] [boards-to-build]
13
14 Options:
15 -a ARCH, --arch ARCH Build all boards with arch ARCH
16 -c CPU, --cpu CPU Build all boards with cpu CPU
17 -v VENDOR, --vendor VENDOR Build all boards with vendor VENDOR
18 -s SOC, --soc SOC Build all boards with soc SOC
19 -h, --help This help output
20
21 Selections by these options are logically ANDed; if the same option
22 is used repeatedly, such selections are ORed. So "-v FOO -v BAR"
23 will select all configurations where the vendor is either FOO or
24 BAR. Any additional arguments specified on the command line are
25 always build additionally. See the boards.cfg file for more info.
26
27 If no boards are specified, then the default is "powerpc".
28
29 Environment variables:
30 BUILD_NCPUS number of parallel make jobs (default: auto)
31 CROSS_COMPILE cross-compiler toolchain prefix (default: "")
32 MAKEALL_LOGDIR output all logs to here (default: ./LOG/)
33 BUILD_DIR output build directory (default: ./)
34
35 Examples:
36 - build all Power Architecture boards:
37 MAKEALL -a powerpc
38 MAKEALL --arch powerpc
39 MAKEALL powerpc
40 - build all PowerPC boards manufactured by vendor "esd":
41 MAKEALL -a powerpc -v esd
42 - build all PowerPC boards manufactured either by "keymile" or "siemens":
43 MAKEALL -a powerpc -v keymile -v siemens
44 - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards:
45 MAKEALL -c mpc83xx -v freescale 4xx
46 EOF
47 exit ${ret}
48}
49
50SHORT_OPTS="ha:c:v:s:"
51LONG_OPTS="help,arch:,cpu:,vendor:,soc:"
0777eafb
WD
52
53# Option processing based on util-linux-2.13/getopt-parse.bash
54
071bc923 55# Note that we use `"$@"' to let each command-line parameter expand to a
0777eafb
WD
56# separate word. The quotes around `$@' are essential!
57# We need TEMP as the `eval set --' would nuke the return value of
58# getopt.
59TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
60 -n 'MAKEALL' -- "$@"`
61
d8e392d9 62[ $? != 0 ] && usage 1
0777eafb
WD
63
64# Note the quotes around `$TEMP': they are essential!
65eval set -- "$TEMP"
66
67SELECTED=''
68
69while true ; do
70 case "$1" in
71 -a|--arch)
72 # echo "Option ARCH: argument \`$2'"
73 if [ "$opt_a" ] ; then
74 opt_a="${opt_a%)} || \$2 == \"$2\")"
75 else
76 opt_a="(\$2 == \"$2\")"
77 fi
78 SELECTED='y'
79 shift 2 ;;
80 -c|--cpu)
81 # echo "Option CPU: argument \`$2'"
82 if [ "$opt_c" ] ; then
83 opt_c="${opt_c%)} || \$3 == \"$2\")"
84 else
85 opt_c="(\$3 == \"$2\")"
86 fi
87 SELECTED='y'
88 shift 2 ;;
89 -s|--soc)
90 # echo "Option SoC: argument \`$2'"
91 if [ "$opt_s" ] ; then
92 opt_s="${opt_s%)} || \$6 == \"$2\")"
93 else
94 opt_s="(\$6 == \"$2\")"
95 fi
96 SELECTED='y'
97 shift 2 ;;
98 -v|--vendor)
99 # echo "Option VENDOR: argument \`$2'"
100 if [ "$opt_v" ] ; then
101 opt_v="${opt_v%)} || \$5 == \"$2\")"
102 else
103 opt_v="(\$5 == \"$2\")"
104 fi
105 SELECTED='y'
106 shift 2 ;;
d8e392d9
MF
107 -h|--help)
108 usage ;;
0777eafb
WD
109 --)
110 shift ; break ;;
111 *)
112 echo "Internal error!" >&2 ; exit 1 ;;
113 esac
114done
115# echo "Remaining arguments:"
116# for arg do echo '--> '"\`$arg'" ; done
117
118FILTER="\$1 !~ /^#/"
119[ "$opt_a" ] && FILTER="${FILTER} && $opt_a"
120[ "$opt_c" ] && FILTER="${FILTER} && $opt_c"
121[ "$opt_s" ] && FILTER="${FILTER} && $opt_s"
122[ "$opt_v" ] && FILTER="${FILTER} && $opt_v"
123
124if [ "$SELECTED" ] ; then
125 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
cd57b0bb
PT
126
127 # Make sure some boards from boards.cfg are actually found
128 if [ -z "$SELECTED" ] ; then
129 echo "Error: No boards selected, invalid arguments"
130 exit 1
131 fi
0777eafb
WD
132fi
133
134#########################################################################
135
40a28f08
PT
136# Print statistics when we exit
137trap exit 1 2 3 15
138trap print_stats 0
139
7fa6a2f3
WD
140# Determine number of CPU cores if no default was set
141: ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
142
143if [ "$BUILD_NCPUS" -gt 1 ]
144then
55f786d8 145 JOBS="-j $((BUILD_NCPUS + 1))"
7fa6a2f3
WD
146else
147 JOBS=""
148fi
149
a8c7c708 150
7ebf7443
WD
151if [ "${CROSS_COMPILE}" ] ; then
152 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
153else
154 MAKE=make
155fi
156
f9328639
MB
157if [ "${MAKEALL_LOGDIR}" ] ; then
158 LOG_DIR=${MAKEALL_LOGDIR}
159else
160 LOG_DIR="LOG"
161fi
887e2ec9 162
f9328639
MB
163if [ ! "${BUILD_DIR}" ] ; then
164 BUILD_DIR="."
165fi
166
4f0645eb 167[ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
7ebf7443
WD
168
169LIST=""
170
40a28f08
PT
171# Keep track of the number of builds and errors
172ERR_CNT=0
173ERR_LIST=""
174TOTAL_CNT=0
f2352877 175RC=0
40a28f08 176
9ec49f8f
MF
177# Helper funcs for parsing boards.cfg
178boards_by_field()
179{
180 awk \
181 -v field="$1" \
182 -v select="$2" \
183 '($1 !~ /^#/ && $field == select) { print $1 }' \
184 boards.cfg
185}
186boards_by_arch() { boards_by_field 2 "$@" ; }
187boards_by_cpu() { boards_by_field 3 "$@" ; }
0a41edaa 188boards_by_soc() { boards_by_field 6 "$@" ; }
9ec49f8f 189
0db5bca8
WD
190#########################################################################
191## MPC5xx Systems
192#########################################################################
193
9ec49f8f 194LIST_5xx="$(boards_by_cpu mpc5xx)"
0db5bca8 195
945af8d7
WD
196#########################################################################
197## MPC5xxx Systems
198#########################################################################
199
2ae18241 200LIST_5xxx="$(boards_by_cpu mpc5xxx)"
945af8d7 201
8993e54b
RJ
202#########################################################################
203## MPC512x Systems
204#########################################################################
205
2ae18241 206LIST_512x="$(boards_by_cpu mpc512x)"
945af8d7 207
7ebf7443
WD
208#########################################################################
209## MPC8xx Systems
210#########################################################################
9ec49f8f 211
2ae18241 212LIST_8xx="$(boards_by_cpu mpc8xx)"
7ebf7443
WD
213
214#########################################################################
215## PPC4xx Systems
216#########################################################################
217
2ae18241 218LIST_4xx="$(boards_by_cpu ppc4xx)"
7ebf7443 219
983fda83
WD
220#########################################################################
221## MPC8220 Systems
222#########################################################################
223
9ec49f8f 224LIST_8220="$(boards_by_cpu mpc8220)"
983fda83 225
7ebf7443
WD
226#########################################################################
227## MPC824x Systems
228#########################################################################
229
2ae18241 230LIST_824x="$(boards_by_cpu mpc824x)"
592c5cab 231
7ebf7443 232#########################################################################
7aa78614 233## MPC8260 Systems (includes 8250, 8255 etc.)
7ebf7443
WD
234#########################################################################
235
2ae18241 236LIST_8260="$(boards_by_cpu mpc8260)"
7ebf7443 237
f046ccd1
EL
238#########################################################################
239## MPC83xx Systems (includes 8349, etc.)
240#########################################################################
241
2ae18241 242LIST_83xx="$(boards_by_cpu mpc83xx)"
f046ccd1 243
42d1f039
WD
244#########################################################################
245## MPC85xx Systems (includes 8540, 8560 etc.)
246#########################################################################
247
2ae18241 248LIST_85xx="$(boards_by_cpu mpc85xx)"
42d1f039 249
822d5536
JL
250#########################################################################
251## MPC86xx Systems
252#########################################################################
253
2ae18241 254LIST_86xx="$(boards_by_cpu mpc86xx)"
822d5536 255
7ebf7443
WD
256#########################################################################
257## 74xx/7xx Systems
258#########################################################################
259
2ae18241 260LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
7ebf7443 261
d9a42c0a
WD
262#########################################################################
263## PowerPC groups
264#########################################################################
265
266LIST_TSEC=" \
267 ${LIST_83xx} \
268 ${LIST_85xx} \
269 ${LIST_86xx} \
270"
271
a47a12be 272LIST_powerpc=" \
fb56579f 273 ${LIST_5xx} \
3deca9d4 274 ${LIST_512x} \
fb56579f
KP
275 ${LIST_5xxx} \
276 ${LIST_8xx} \
277 ${LIST_8220} \
278 ${LIST_824x} \
279 ${LIST_8260} \
280 ${LIST_83xx} \
281 ${LIST_85xx} \
282 ${LIST_86xx} \
283 ${LIST_4xx} \
2ae18241 284 ${LIST_74xx_7xx}\
fb56579f 285"
7ebf7443 286
a47a12be
SR
287# Alias "ppc" -> "powerpc" to not break compatibility with older scripts
288# still using "ppc" instead of "powerpc"
289LIST_ppc=" \
290 ${LIST_powerpc} \
291"
292
7ebf7443
WD
293#########################################################################
294## StrongARM Systems
295#########################################################################
296
9ec49f8f 297LIST_SA="$(boards_by_cpu sa1100)"
7ebf7443
WD
298
299#########################################################################
300## ARM7 Systems
301#########################################################################
302
fb56579f
KP
303LIST_ARM7=" \
304 ap7 \
305 ap720t \
306 armadillo \
307 B2 \
308 ep7312 \
309 evb4510 \
310 impa7 \
311 integratorap \
312 lpc2292sodimm \
313 modnet50 \
314 SMN42 \
74f4304e 315"
7ebf7443
WD
316
317#########################################################################
318## ARM9 Systems
319#########################################################################
320
fb56579f 321LIST_ARM9=" \
43a5f0df 322 a320evb \
fb56579f
KP
323 ap920t \
324 ap922_XA10 \
325 ap926ejs \
326 ap946es \
327 ap966 \
c291e2fc 328 aspenite \
fb56579f
KP
329 cp920t \
330 cp922_XA10 \
331 cp926ejs \
332 cp946es \
333 cp966 \
2819e136 334 da830evm \
89b765c7 335 da850evm \
cf3c142e
MK
336 edb9301 \
337 edb9302 \
338 edb9302a \
339 edb9307 \
340 edb9307a \
341 edb9312 \
342 edb9315 \
343 edb9315a \
ce9c227c 344 edminiv2 \
16b76705 345 guruplug \
10bc241d 346 imx27lite \
18a056a1 347 jadecpu \
83b40c31 348 km_kirkwood \
fb56579f 349 lpd7a400 \
bbe31092 350 magnesium \
4abc5bff 351 mv88f6281gtw_ge \
fb56579f
KP
352 mx1ads \
353 mx1fs2 \
354 netstar \
ceb70b46
JCPV
355 nhk8815 \
356 nhk8815_onenand \
fb56579f
KP
357 omap1510inn \
358 omap1610h2 \
359 omap1610inn \
a3543d6d 360 omap5912osk \
fb56579f 361 omap730p2 \
e92daeb5 362 openrd_base \
21861f2d
CA
363 openrd_client \
364 openrd_ultimate \
01fa4e8c 365 portl2 \
fbc8365a 366 rd6281a \
fb56579f
KP
367 sbc2410x \
368 scb9328 \
55dd4ba5 369 sheevaplug \
fb56579f
KP
370 smdk2400 \
371 smdk2410 \
7e074158 372 spear300 \
080cfee7 373 spear310 \
7da69236 374 spear320 \
566c9c16 375 spear600 \
fb56579f
KP
376 VCMA9 \
377 versatile \
378 versatileab \
379 versatilepb \
380 voiceblue \
381 davinci_dvevm \
382 davinci_schmoogie \
c7f879ec 383 davinci_sffsdr \
fb56579f 384 davinci_sonata \
28b00324 385 davinci_dm355evm \
5df65cf5 386 davinci_dm355leopard \
3fca2929 387 davinci_dm365evm \
6ab176d7 388 davinci_dm6467evm \
6f21347d 389"
7ebf7443 390
74f4304e
WD
391#########################################################################
392## ARM10 Systems
393#########################################################################
fb56579f
KP
394LIST_ARM10=" \
395 integratorcp \
396 cp1026 \
74f4304e
WD
397"
398
8ed96046
WD
399#########################################################################
400## ARM11 Systems
401#########################################################################
0c692673
GL
402LIST_ARM11=" \
403 cp1136 \
404 omap2420h4 \
405 apollon \
406 imx31_litekit \
407 imx31_phycore \
408 imx31_phycore_eet \
409 mx31ads \
8449f287 410 mx31pdk \
d08e5ca3 411 mx31pdk_nand \
0c692673
GL
412 qong \
413 smdk6400 \
5cc48f7e 414 tnetv107x_evm \
74f4304e 415"
8ed96046 416
f904cdbb 417#########################################################################
f56348af 418## ARMV7 Systems
f904cdbb 419#########################################################################
f56348af 420LIST_ARMV7=" \
915162da 421 am3517_crane \
ed01e45c 422 am3517_evm \
b80e41ac 423 ca9x4_ct_vxp \
c35d7cf0 424 devkit8000 \
fb6e1f1b 425 dig297 \
8a3f6bb6 426 igep0020 \
1a832dc4 427 igep0030 \
c5fb70c9 428 mx51evk \
f904cdbb 429 omap3_beagle \
9d0fc811 430 omap3_overo \
ad9bc8e5 431 omap3_evm \
2be2c6cc 432 omap3_pandora \
e63e5904 433 omap3_sdp3430 \
7379f45a 434 omap3_zoom1 \
376aee78 435 omap3_zoom2 \
c57cca25 436 omap4_panda \
3e76d62a 437 omap4_sdp4430 \
c474a8eb 438 s5p_goni \
8bc4ee9e 439 smdkc100 \
f904cdbb
DB
440"
441
602cac13
JCPV
442#########################################################################
443## AT91 Systems
444#########################################################################
445
0a41edaa 446LIST_at91="$(boards_by_soc at91)\
5ccc2d99 447 at91sam9m10g45ek \
602cac13
JCPV
448"
449
7ebf7443
WD
450#########################################################################
451## Xscale Systems
452#########################################################################
453
7c957c0e 454LIST_pxa="$(boards_by_cpu pxa)"
7ebf7443 455
9ec49f8f 456LIST_ixp="$(boards_by_cpu ixp)
fb56579f
KP
457 pdnb3 \
458 scpu \
459"
7ebf7443 460
d9a42c0a
WD
461#########################################################################
462## ARM groups
463#########################################################################
2d5b561e 464
f904cdbb
DB
465LIST_arm=" \
466 ${LIST_SA} \
467 ${LIST_ARM7} \
468 ${LIST_ARM9} \
469 ${LIST_ARM10} \
470 ${LIST_ARM11} \
f56348af 471 ${LIST_ARMV7} \
f904cdbb
DB
472 ${LIST_at91} \
473 ${LIST_pxa} \
474 ${LIST_ixp} \
8ed96046 475"
7ebf7443 476
c021880a 477#########################################################################
b62bdffb 478## MIPS Systems (default = big endian)
c021880a
WD
479#########################################################################
480
fb56579f
KP
481LIST_mips4kc=" \
482 incaip \
0764c164 483 qemu_mips \
2a61eff6
SR
484 vct_platinum \
485 vct_platinum_small \
486 vct_platinum_onenand \
487 vct_platinum_onenand_small \
488 vct_platinumavc \
489 vct_platinumavc_small \
490 vct_platinumavc_onenand \
491 vct_platinumavc_onenand_small \
492 vct_premium \
493 vct_premium_small \
494 vct_premium_onenand \
495 vct_premium_onenand_small \
fb56579f 496"
c021880a 497
b38a5699 498LIST_mips5kc=""
3e38691e 499
fb56579f
KP
500LIST_au1xx0=" \
501 dbau1000 \
502 dbau1100 \
503 dbau1500 \
504 dbau1550 \
505 dbau1550_el \
506 gth2 \
507"
5da627a4 508
fb56579f
KP
509LIST_mips=" \
510 ${LIST_mips4kc} \
511 ${LIST_mips5kc} \
512 ${LIST_au1xx0} \
513"
c021880a 514
b62bdffb
WD
515#########################################################################
516## MIPS Systems (little endian)
517#########################################################################
518
519LIST_mips4kc_el=""
520
521LIST_mips5kc_el=""
522
fb56579f
KP
523LIST_au1xx0_el=" \
524 dbau1550_el \
b09258c5 525 pb1000 \
fb56579f 526"
b62bdffb 527
fb56579f
KP
528LIST_mips_el=" \
529 ${LIST_mips4kc_el} \
530 ${LIST_mips5kc_el} \
531 ${LIST_au1xx0_el} \
532"
b62bdffb 533
7a8e9bed 534#########################################################################
fea25720 535## x86 Systems
7a8e9bed
WD
536#########################################################################
537
fea25720 538LIST_x86="$(boards_by_arch x86)"
7a8e9bed 539
5c952cf0
WD
540#########################################################################
541## Nios-II Systems
542#########################################################################
543
4827d067 544LIST_nios2="$(boards_by_arch nios2)"
5c952cf0 545
857cad37
WD
546#########################################################################
547## MicroBlaze Systems
548#########################################################################
549
9ec49f8f 550LIST_microblaze="$(boards_by_arch microblaze)"
857cad37 551
f8c3b4f3
ZL
552#########################################################################
553## ColdFire Systems
554#########################################################################
555
9ec49f8f 556LIST_coldfire="$(boards_by_arch m68k)
9d79e575 557 astro_mcf5373l \
fb56579f
KP
558 cobra5272 \
559 EB+MCF-EV123 \
560 EB+MCF-EV123_internal \
1552af70 561 M52277EVB \
4a442d31 562 M5235EVB \
aa5f1f9d
TL
563 M5329AFEE \
564 M5373EVB \
05316f8e 565 M54451EVB \
8ae158cd 566 M54455EVB \
57a12720
TL
567 M5475AFE \
568 M5485AFE \
9acb626f 569"
f8c3b4f3 570
6ccec449
WD
571#########################################################################
572## AVR32 Systems
573#########################################################################
574
9ec49f8f 575LIST_avr32="$(boards_by_arch avr32)"
6ccec449 576
ef26a08f
AL
577#########################################################################
578## Blackfin Systems
579#########################################################################
580
36cf8cb4 581LIST_blackfin="$(boards_by_arch blackfin)"
ef26a08f 582
c7144373
JCPV
583#########################################################################
584## SH Systems
585#########################################################################
586
e0f0e527 587LIST_sh2="$(boards_by_cpu sh2)"
3771c69d 588LIST_sh3="$(boards_by_cpu sh3)"
03626be3 589LIST_sh4="$(boards_by_cpu sh4)"
d9a42c0a 590
03626be3 591LIST_sh="$(boards_by_arch sh)"
c7144373 592
c2f02da2
DH
593#########################################################################
594## SPARC Systems
595#########################################################################
596
9ec49f8f 597LIST_sparc="$(boards_by_arch sparc)"
7ebf7443
WD
598
599#-----------------------------------------------------------------------
600
601build_target() {
602 target=$1
603
604 ${MAKE} distclean >/dev/null
d70d8ccc 605 ${MAKE} -s ${target}_config
f9328639
MB
606
607 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
608 | tee ${LOG_DIR}/$target.ERR
f2352877
PT
609
610 # Check for 'make' errors
611 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
612 RC=1
613 fi
614
40a28f08
PT
615 if [ -s ${LOG_DIR}/$target.ERR ] ; then
616 ERR_CNT=$((ERR_CNT + 1))
617 ERR_LIST="${ERR_LIST} $target"
618 else
619 rm ${LOG_DIR}/$target.ERR
620 fi
621
622 TOTAL_CNT=$((TOTAL_CNT + 1))
f9328639 623
208447f8 624 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
f9328639 625 | tee -a ${LOG_DIR}/$target.MAKELOG
7ebf7443 626}
9ec49f8f
MF
627build_targets() {
628 for t in "$@" ; do
629 # If a LIST_xxx var exists, use it. But avoid variable
630 # expansion in the eval when a board name contains certain
631 # characters that the shell interprets.
632 case ${t} in
633 *[-+=]*) list= ;;
634 *) list=$(eval echo '${LIST_'$t'}') ;;
635 esac
636 if [ -n "${list}" ] ; then
637 build_targets ${list}
638 else
639 build_target ${t}
640 fi
641 done
642}
7ebf7443
WD
643
644#-----------------------------------------------------------------------
645
40a28f08
PT
646print_stats() {
647 echo ""
648 echo "--------------------- SUMMARY ----------------------------"
649 echo "Boards compiled: ${TOTAL_CNT}"
650 if [ ${ERR_CNT} -gt 0 ] ; then
651 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
652 fi
653 echo "----------------------------------------------------------"
f2352877
PT
654
655 exit $RC
40a28f08 656}
7ebf7443 657
40a28f08 658#-----------------------------------------------------------------------
9ec49f8f 659
0777eafb
WD
660# Build target groups selected by options, plus any command line args
661set -- ${SELECTED} "$@"
662# run PowerPC by default
9ec49f8f 663[ $# = 0 ] && set -- powerpc
9ec49f8f 664build_targets "$@"