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 -l, --list List all targets to be built
20 -h, --help This help output
22 Selections by these options are logically ANDed; if the same option
23 is used repeatedly, such selections are ORed. So "-v FOO -v BAR"
24 will select all configurations where the vendor is either FOO or
25 BAR. Any additional arguments specified on the command line are
26 always build additionally. See the boards.cfg file for more info.
28 If no boards are specified, then the default is "powerpc".
30 Environment variables:
31 BUILD_NCPUS number of parallel make jobs (default: auto)
32 CROSS_COMPILE cross-compiler toolchain prefix (default: "")
33 MAKEALL_LOGDIR output all logs to here (default: ./LOG/)
34 BUILD_DIR output build directory (default: ./)
37 - build all Power Architecture boards:
39 MAKEALL --arch powerpc
41 - build all PowerPC boards manufactured by vendor "esd":
42 MAKEALL -a powerpc -v esd
43 - build all PowerPC boards manufactured either by "keymile" or "siemens":
44 MAKEALL -a powerpc -v keymile -v siemens
45 - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards:
46 MAKEALL -c mpc83xx -v freescale 4xx
51 SHORT_OPTS="ha:c:v:s:l"
52 LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list"
54 # Option processing based on util-linux-2.13/getopt-parse.bash
56 # Note that we use `"$@"' to let each command-line parameter expand to a
57 # separate word. The quotes around `$@' are essential!
58 # We need TEMP as the `eval set --' would nuke the return value of
60 TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
63 [ $? != 0 ] && usage 1
65 # Note the quotes around `$TEMP': they are essential!
74 # echo "Option ARCH: argument \`$2'"
75 if [ "$opt_a" ] ; then
76 opt_a="${opt_a%)} || \$2 == \"$2\")"
78 opt_a="(\$2 == \"$2\")"
83 # echo "Option CPU: argument \`$2'"
84 if [ "$opt_c" ] ; then
85 opt_c="${opt_c%)} || \$3 == \"$2\")"
87 opt_c="(\$3 == \"$2\")"
92 # echo "Option SoC: argument \`$2'"
93 if [ "$opt_s" ] ; then
94 opt_s="${opt_s%)} || \$6 == \"$2\")"
96 opt_s="(\$6 == \"$2\")"
101 # echo "Option VENDOR: argument \`$2'"
102 if [ "$opt_v" ] ; then
103 opt_v="${opt_v%)} || \$5 == \"$2\")"
105 opt_v="(\$5 == \"$2\")"
117 echo "Internal error!" >&2 ; exit 1 ;;
120 # echo "Remaining arguments:"
121 # for arg do echo '--> '"\`$arg'" ; done
124 [ "$opt_a" ] && FILTER="${FILTER} && $opt_a"
125 [ "$opt_c" ] && FILTER="${FILTER} && $opt_c"
126 [ "$opt_s" ] && FILTER="${FILTER} && $opt_s"
127 [ "$opt_v" ] && FILTER="${FILTER} && $opt_v"
129 if [ "$SELECTED" ] ; then
130 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
132 # Make sure some boards from boards.cfg are actually found
133 if [ -z "$SELECTED" ] ; then
134 echo "Error: No boards selected, invalid arguments"
139 #########################################################################
141 # Print statistics when we exit
145 # Determine number of CPU cores if no default was set
146 : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
148 if [ "$BUILD_NCPUS" -gt 1 ]
150 JOBS="-j $((BUILD_NCPUS + 1))"
156 if [ "${CROSS_COMPILE}" ] ; then
157 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
162 if [ "${MAKEALL_LOGDIR}" ] ; then
163 LOG_DIR=${MAKEALL_LOGDIR}
168 if [ ! "${BUILD_DIR}" ] ; then
172 [ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
176 # Keep track of the number of builds and errors
182 # Helper funcs for parsing boards.cfg
188 '($1 !~ /^#/ && $field == select) { print $1 }' \
191 boards_by_arch() { boards_by_field 2 "$@" ; }
192 boards_by_cpu() { boards_by_field 3 "$@" ; }
193 boards_by_soc() { boards_by_field 6 "$@" ; }
195 #########################################################################
197 #########################################################################
199 LIST_5xx="$(boards_by_cpu mpc5xx)"
201 #########################################################################
203 #########################################################################
205 LIST_5xxx="$(boards_by_cpu mpc5xxx)"
207 #########################################################################
209 #########################################################################
211 LIST_512x="$(boards_by_cpu mpc512x)"
213 #########################################################################
215 #########################################################################
217 LIST_8xx="$(boards_by_cpu mpc8xx)"
219 #########################################################################
221 #########################################################################
223 LIST_4xx="$(boards_by_cpu ppc4xx)"
225 #########################################################################
227 #########################################################################
229 LIST_8220="$(boards_by_cpu mpc8220)"
231 #########################################################################
233 #########################################################################
235 LIST_824x="$(boards_by_cpu mpc824x)"
237 #########################################################################
238 ## MPC8260 Systems (includes 8250, 8255 etc.)
239 #########################################################################
241 LIST_8260="$(boards_by_cpu mpc8260)"
243 #########################################################################
244 ## MPC83xx Systems (includes 8349, etc.)
245 #########################################################################
247 LIST_83xx="$(boards_by_cpu mpc83xx)"
249 #########################################################################
250 ## MPC85xx Systems (includes 8540, 8560 etc.)
251 #########################################################################
253 LIST_85xx="$(boards_by_cpu mpc85xx)"
255 #########################################################################
257 #########################################################################
259 LIST_86xx="$(boards_by_cpu mpc86xx)"
261 #########################################################################
263 #########################################################################
265 LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
267 #########################################################################
269 #########################################################################
292 # Alias "ppc" -> "powerpc" to not break compatibility with older scripts
293 # still using "ppc" instead of "powerpc"
298 #########################################################################
300 #########################################################################
302 LIST_SA="$(boards_by_cpu sa1100)"
304 #########################################################################
306 #########################################################################
308 LIST_ARM9="$(boards_by_cpu arm920t) \
309 $(boards_by_cpu arm926ejs) \
310 $(boards_by_cpu arm925t) \
316 #########################################################################
318 #########################################################################
319 LIST_ARM11="$(boards_by_cpu arm1136) \
327 #########################################################################
329 #########################################################################
331 LIST_ARMV7="$(boards_by_cpu armv7)"
333 #########################################################################
335 #########################################################################
337 LIST_at91="$(boards_by_soc at91)"
339 #########################################################################
341 #########################################################################
343 LIST_pxa="$(boards_by_cpu pxa)"
345 LIST_ixp="$(boards_by_cpu ixp)
350 #########################################################################
352 #########################################################################
365 #########################################################################
366 ## MIPS Systems (default = big endian)
367 #########################################################################
374 vct_platinum_onenand \
375 vct_platinum_onenand_small \
377 vct_platinumavc_small \
378 vct_platinumavc_onenand \
379 vct_platinumavc_onenand_small \
382 vct_premium_onenand \
383 vct_premium_onenand_small \
403 #########################################################################
404 ## MIPS Systems (little endian)
405 #########################################################################
424 #########################################################################
426 #########################################################################
428 LIST_x86="$(boards_by_arch x86)"
430 #########################################################################
432 #########################################################################
434 LIST_nios2="$(boards_by_arch nios2)"
436 #########################################################################
437 ## MicroBlaze Systems
438 #########################################################################
440 LIST_microblaze="$(boards_by_arch microblaze)"
442 #########################################################################
444 #########################################################################
446 LIST_m68k="$(boards_by_arch m68k)
448 EB+MCF-EV123_internal \
454 LIST_coldfire=${LIST_m68k}
456 #########################################################################
458 #########################################################################
460 LIST_avr32="$(boards_by_arch avr32)"
462 #########################################################################
464 #########################################################################
466 LIST_blackfin="$(boards_by_arch blackfin)"
468 #########################################################################
470 #########################################################################
472 LIST_sh2="$(boards_by_cpu sh2)"
473 LIST_sh3="$(boards_by_cpu sh3)"
474 LIST_sh4="$(boards_by_cpu sh4)"
476 LIST_sh="$(boards_by_arch sh)"
478 #########################################################################
480 #########################################################################
482 LIST_sparc="$(boards_by_arch sparc)"
484 #########################################################################
486 #########################################################################
488 LIST_nds32="$(boards_by_arch nds32)"
490 #-----------------------------------------------------------------------
495 if [ "$ONLY_LIST" == 'y' ] ; then
500 ${MAKE} distclean >/dev/null
501 ${MAKE} -s ${target}_config
503 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
504 | tee ${LOG_DIR}/$target.ERR
506 # Check for 'make' errors
507 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
511 if [ -s ${LOG_DIR}/$target.ERR ] ; then
512 ERR_CNT=$((ERR_CNT + 1))
513 ERR_LIST="${ERR_LIST} $target"
515 rm ${LOG_DIR}/$target.ERR
518 TOTAL_CNT=$((TOTAL_CNT + 1))
520 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
521 | tee -a ${LOG_DIR}/$target.MAKELOG
525 # If a LIST_xxx var exists, use it. But avoid variable
526 # expansion in the eval when a board name contains certain
527 # characters that the shell interprets.
530 *) list=$(eval echo '${LIST_'$t'}') ;;
532 if [ -n "${list}" ] ; then
533 build_targets ${list}
540 #-----------------------------------------------------------------------
543 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
545 echo "--------------------- SUMMARY ----------------------------"
546 echo "Boards compiled: ${TOTAL_CNT}"
547 if [ ${ERR_CNT} -gt 0 ] ; then
548 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
550 echo "----------------------------------------------------------"
555 #-----------------------------------------------------------------------
557 # Build target groups selected by options, plus any command line args
558 set -- ${SELECTED} "$@"
559 # run PowerPC by default
560 [ $# = 0 ] && set -- powerpc