2 # Tool mainly for U-Boot Quality Assurance: build one or more board
3 # configurations with minimal verbosity, showing only warnings and
8 # if exiting with 0, write to stdout, else write to stderr
10 [ "${ret}" -eq 1 ] && exec 1>&2
12 Usage: MAKEALL [options] [--] [boards-to-build]
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
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.
27 If no boards are specified, then the default is "powerpc".
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: ./)
36 - build all Power Architecture boards:
38 MAKEALL --arch 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
50 SHORT_OPTS="ha:c:v:s:"
51 LONG_OPTS="help,arch:,cpu:,vendor:,soc:"
53 # Option processing based on util-linux-2.13/getopt-parse.bash
55 # Note that we use `"$@"' to let each command-line parameter expand to a
56 # separate word. The quotes around `$@' are essential!
57 # We need TEMP as the `eval set --' would nuke the return value of
59 TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
62 [ $? != 0 ] && usage 1
64 # Note the quotes around `$TEMP': they are essential!
72 # echo "Option ARCH: argument \`$2'"
73 if [ "$opt_a" ] ; then
74 opt_a="${opt_a%)} || \$2 == \"$2\")"
76 opt_a="(\$2 == \"$2\")"
81 # echo "Option CPU: argument \`$2'"
82 if [ "$opt_c" ] ; then
83 opt_c="${opt_c%)} || \$3 == \"$2\")"
85 opt_c="(\$3 == \"$2\")"
90 # echo "Option SoC: argument \`$2'"
91 if [ "$opt_s" ] ; then
92 opt_s="${opt_s%)} || \$6 == \"$2\")"
94 opt_s="(\$6 == \"$2\")"
99 # echo "Option VENDOR: argument \`$2'"
100 if [ "$opt_v" ] ; then
101 opt_v="${opt_v%)} || \$5 == \"$2\")"
103 opt_v="(\$5 == \"$2\")"
112 echo "Internal error!" >&2 ; exit 1 ;;
115 # echo "Remaining arguments:"
116 # for arg do echo '--> '"\`$arg'" ; done
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"
124 if [ "$SELECTED" ] ; then
125 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
127 # Make sure some boards from boards.cfg are actually found
128 if [ -z "$SELECTED" ] ; then
129 echo "Error: No boards selected, invalid arguments"
134 #########################################################################
136 # Print statistics when we exit
140 # Determine number of CPU cores if no default was set
141 : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
143 if [ "$BUILD_NCPUS" -gt 1 ]
145 JOBS="-j $((BUILD_NCPUS + 1))"
151 if [ "${CROSS_COMPILE}" ] ; then
152 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
157 if [ "${MAKEALL_LOGDIR}" ] ; then
158 LOG_DIR=${MAKEALL_LOGDIR}
163 if [ ! "${BUILD_DIR}" ] ; then
167 [ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
171 # Keep track of the number of builds and errors
177 # Helper funcs for parsing boards.cfg
183 '($1 !~ /^#/ && $field == select) { print $1 }' \
186 boards_by_arch() { boards_by_field 2 "$@" ; }
187 boards_by_cpu() { boards_by_field 3 "$@" ; }
188 boards_by_soc() { boards_by_field 6 "$@" ; }
190 #########################################################################
192 #########################################################################
194 LIST_5xx="$(boards_by_cpu mpc5xx)"
196 #########################################################################
198 #########################################################################
200 LIST_5xxx="$(boards_by_cpu mpc5xxx)"
202 #########################################################################
204 #########################################################################
206 LIST_512x="$(boards_by_cpu mpc512x)"
208 #########################################################################
210 #########################################################################
212 LIST_8xx="$(boards_by_cpu mpc8xx)"
214 #########################################################################
216 #########################################################################
218 LIST_4xx="$(boards_by_cpu ppc4xx)"
220 #########################################################################
222 #########################################################################
224 LIST_8220="$(boards_by_cpu mpc8220)"
226 #########################################################################
228 #########################################################################
230 LIST_824x="$(boards_by_cpu mpc824x)"
232 #########################################################################
233 ## MPC8260 Systems (includes 8250, 8255 etc.)
234 #########################################################################
236 LIST_8260="$(boards_by_cpu mpc8260)"
238 #########################################################################
239 ## MPC83xx Systems (includes 8349, etc.)
240 #########################################################################
242 LIST_83xx="$(boards_by_cpu mpc83xx)"
244 #########################################################################
245 ## MPC85xx Systems (includes 8540, 8560 etc.)
246 #########################################################################
248 LIST_85xx="$(boards_by_cpu mpc85xx)"
250 #########################################################################
252 #########################################################################
254 LIST_86xx="$(boards_by_cpu mpc86xx)"
256 #########################################################################
258 #########################################################################
260 LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
262 #########################################################################
264 #########################################################################
287 # Alias "ppc" -> "powerpc" to not break compatibility with older scripts
288 # still using "ppc" instead of "powerpc"
293 #########################################################################
295 #########################################################################
297 LIST_SA="$(boards_by_cpu sa1100)"
299 #########################################################################
301 #########################################################################
311 #########################################################################
313 #########################################################################
356 davinci_dm355leopard \
361 #########################################################################
363 #########################################################################
378 #########################################################################
380 #########################################################################
382 LIST_ARMV7="$(boards_by_cpu armv7)"
384 #########################################################################
386 #########################################################################
388 LIST_at91="$(boards_by_soc at91)"
390 #########################################################################
392 #########################################################################
394 LIST_pxa="$(boards_by_cpu pxa)"
396 LIST_ixp="$(boards_by_cpu ixp)
401 #########################################################################
403 #########################################################################
417 #########################################################################
418 ## MIPS Systems (default = big endian)
419 #########################################################################
426 vct_platinum_onenand \
427 vct_platinum_onenand_small \
429 vct_platinumavc_small \
430 vct_platinumavc_onenand \
431 vct_platinumavc_onenand_small \
434 vct_premium_onenand \
435 vct_premium_onenand_small \
455 #########################################################################
456 ## MIPS Systems (little endian)
457 #########################################################################
474 #########################################################################
476 #########################################################################
478 LIST_x86="$(boards_by_arch x86)"
480 #########################################################################
482 #########################################################################
484 LIST_nios2="$(boards_by_arch nios2)"
486 #########################################################################
487 ## MicroBlaze Systems
488 #########################################################################
490 LIST_microblaze="$(boards_by_arch microblaze)"
492 #########################################################################
494 #########################################################################
496 LIST_coldfire="$(boards_by_arch m68k)
500 EB+MCF-EV123_internal \
511 #########################################################################
513 #########################################################################
515 LIST_avr32="$(boards_by_arch avr32)"
517 #########################################################################
519 #########################################################################
521 LIST_blackfin="$(boards_by_arch blackfin)"
523 #########################################################################
525 #########################################################################
527 LIST_sh2="$(boards_by_cpu sh2)"
528 LIST_sh3="$(boards_by_cpu sh3)"
529 LIST_sh4="$(boards_by_cpu sh4)"
531 LIST_sh="$(boards_by_arch sh)"
533 #########################################################################
535 #########################################################################
537 LIST_sparc="$(boards_by_arch sparc)"
539 #-----------------------------------------------------------------------
544 ${MAKE} distclean >/dev/null
545 ${MAKE} -s ${target}_config
547 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
548 | tee ${LOG_DIR}/$target.ERR
550 # Check for 'make' errors
551 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
555 if [ -s ${LOG_DIR}/$target.ERR ] ; then
556 ERR_CNT=$((ERR_CNT + 1))
557 ERR_LIST="${ERR_LIST} $target"
559 rm ${LOG_DIR}/$target.ERR
562 TOTAL_CNT=$((TOTAL_CNT + 1))
564 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
565 | tee -a ${LOG_DIR}/$target.MAKELOG
569 # If a LIST_xxx var exists, use it. But avoid variable
570 # expansion in the eval when a board name contains certain
571 # characters that the shell interprets.
574 *) list=$(eval echo '${LIST_'$t'}') ;;
576 if [ -n "${list}" ] ; then
577 build_targets ${list}
584 #-----------------------------------------------------------------------
588 echo "--------------------- SUMMARY ----------------------------"
589 echo "Boards compiled: ${TOTAL_CNT}"
590 if [ ${ERR_CNT} -gt 0 ] ; then
591 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
593 echo "----------------------------------------------------------"
598 #-----------------------------------------------------------------------
600 # Build target groups selected by options, plus any command line args
601 set -- ${SELECTED} "$@"
602 # run PowerPC by default
603 [ $# = 0 ] && set -- powerpc