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 #########################################################################
312 #########################################################################
314 #########################################################################
358 davinci_dm355leopard \
363 #########################################################################
365 #########################################################################
380 #########################################################################
382 #########################################################################
384 LIST_ARMV7="$(boards_by_cpu armv7)"
386 #########################################################################
388 #########################################################################
390 LIST_at91="$(boards_by_soc at91)"
392 #########################################################################
394 #########################################################################
396 LIST_pxa="$(boards_by_cpu pxa)"
398 LIST_ixp="$(boards_by_cpu ixp)
403 #########################################################################
405 #########################################################################
419 #########################################################################
420 ## MIPS Systems (default = big endian)
421 #########################################################################
428 vct_platinum_onenand \
429 vct_platinum_onenand_small \
431 vct_platinumavc_small \
432 vct_platinumavc_onenand \
433 vct_platinumavc_onenand_small \
436 vct_premium_onenand \
437 vct_premium_onenand_small \
457 #########################################################################
458 ## MIPS Systems (little endian)
459 #########################################################################
476 #########################################################################
478 #########################################################################
480 LIST_x86="$(boards_by_arch x86)"
482 #########################################################################
484 #########################################################################
486 LIST_nios2="$(boards_by_arch nios2)"
488 #########################################################################
489 ## MicroBlaze Systems
490 #########################################################################
492 LIST_microblaze="$(boards_by_arch microblaze)"
494 #########################################################################
496 #########################################################################
498 LIST_coldfire="$(boards_by_arch m68k)
502 EB+MCF-EV123_internal \
513 #########################################################################
515 #########################################################################
517 LIST_avr32="$(boards_by_arch avr32)"
519 #########################################################################
521 #########################################################################
523 LIST_blackfin="$(boards_by_arch blackfin)"
525 #########################################################################
527 #########################################################################
529 LIST_sh2="$(boards_by_cpu sh2)"
530 LIST_sh3="$(boards_by_cpu sh3)"
531 LIST_sh4="$(boards_by_cpu sh4)"
533 LIST_sh="$(boards_by_arch sh)"
535 #########################################################################
537 #########################################################################
539 LIST_sparc="$(boards_by_arch sparc)"
541 #-----------------------------------------------------------------------
546 ${MAKE} distclean >/dev/null
547 ${MAKE} -s ${target}_config
549 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
550 | tee ${LOG_DIR}/$target.ERR
552 # Check for 'make' errors
553 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
557 if [ -s ${LOG_DIR}/$target.ERR ] ; then
558 ERR_CNT=$((ERR_CNT + 1))
559 ERR_LIST="${ERR_LIST} $target"
561 rm ${LOG_DIR}/$target.ERR
564 TOTAL_CNT=$((TOTAL_CNT + 1))
566 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
567 | tee -a ${LOG_DIR}/$target.MAKELOG
571 # If a LIST_xxx var exists, use it. But avoid variable
572 # expansion in the eval when a board name contains certain
573 # characters that the shell interprets.
576 *) list=$(eval echo '${LIST_'$t'}') ;;
578 if [ -n "${list}" ] ; then
579 build_targets ${list}
586 #-----------------------------------------------------------------------
590 echo "--------------------- SUMMARY ----------------------------"
591 echo "Boards compiled: ${TOTAL_CNT}"
592 if [ ${ERR_CNT} -gt 0 ] ; then
593 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
595 echo "----------------------------------------------------------"
600 #-----------------------------------------------------------------------
602 # Build target groups selected by options, plus any command line args
603 set -- ${SELECTED} "$@"
604 # run PowerPC by default
605 [ $# = 0 ] && set -- powerpc