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 -m, --maintainers List all targets and maintainer email
21 -M, --mails List all targets and all affilated emails
22 -h, --help This help output
24 Selections by these options are logically ANDed; if the same option
25 is used repeatedly, such selections are ORed. So "-v FOO -v BAR"
26 will select all configurations where the vendor is either FOO or
27 BAR. Any additional arguments specified on the command line are
28 always build additionally. See the boards.cfg file for more info.
30 If no boards are specified, then the default is "powerpc".
32 Environment variables:
33 BUILD_NCPUS number of parallel make jobs (default: auto)
34 CROSS_COMPILE cross-compiler toolchain prefix (default: "")
35 MAKEALL_LOGDIR output all logs to here (default: ./LOG/)
36 BUILD_DIR output build directory (default: ./)
39 - build all Power Architecture boards:
41 MAKEALL --arch powerpc
43 - build all PowerPC boards manufactured by vendor "esd":
44 MAKEALL -a powerpc -v esd
45 - build all PowerPC boards manufactured either by "keymile" or "siemens":
46 MAKEALL -a powerpc -v keymile -v siemens
47 - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards:
48 MAKEALL -c mpc83xx -v freescale 4xx
53 SHORT_OPTS="ha:c:v:s:lmM"
54 LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list,maintainers,mails"
56 # Option processing based on util-linux-2.13/getopt-parse.bash
58 # Note that we use `"$@"' to let each command-line parameter expand to a
59 # separate word. The quotes around `$@' are essential!
60 # We need TEMP as the `eval set --' would nuke the return value of
62 TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
65 [ $? != 0 ] && usage 1
67 # Note the quotes around `$TEMP': they are essential!
78 # echo "Option ARCH: argument \`$2'"
79 if [ "$opt_a" ] ; then
80 opt_a="${opt_a%)} || \$2 == \"$2\")"
82 opt_a="(\$2 == \"$2\")"
87 # echo "Option CPU: argument \`$2'"
88 if [ "$opt_c" ] ; then
89 opt_c="${opt_c%)} || \$3 == \"$2\")"
91 opt_c="(\$3 == \"$2\")"
96 # echo "Option SoC: argument \`$2'"
97 if [ "$opt_s" ] ; then
98 opt_s="${opt_s%)} || \$6 == \"$2\")"
100 opt_s="(\$6 == \"$2\")"
105 # echo "Option VENDOR: argument \`$2'"
106 if [ "$opt_v" ] ; then
107 opt_v="${opt_v%)} || \$5 == \"$2\")"
109 opt_v="(\$5 == \"$2\")"
130 echo "Internal error!" >&2 ; exit 1 ;;
133 # echo "Remaining arguments:"
134 # for arg do echo '--> '"\`$arg'" ; done
137 [ "$opt_a" ] && FILTER="${FILTER} && $opt_a"
138 [ "$opt_c" ] && FILTER="${FILTER} && $opt_c"
139 [ "$opt_s" ] && FILTER="${FILTER} && $opt_s"
140 [ "$opt_v" ] && FILTER="${FILTER} && $opt_v"
142 if [ "$SELECTED" ] ; then
143 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
145 # Make sure some boards from boards.cfg are actually found
146 if [ -z "$SELECTED" ] ; then
147 echo "Error: No boards selected, invalid arguments"
152 #########################################################################
154 # Print statistics when we exit
158 # Determine number of CPU cores if no default was set
159 : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
161 if [ "$BUILD_NCPUS" -gt 1 ]
163 JOBS="-j $((BUILD_NCPUS + 1))"
169 if [ "${CROSS_COMPILE}" ] ; then
170 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
175 if [ "${MAKEALL_LOGDIR}" ] ; then
176 LOG_DIR=${MAKEALL_LOGDIR}
181 if [ ! "${BUILD_DIR}" ] ; then
185 [ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
189 # Keep track of the number of builds and errors
195 # Helper funcs for parsing boards.cfg
201 '($1 !~ /^#/ && $field == select) { print $1 }' \
204 boards_by_arch() { boards_by_field 2 "$@" ; }
205 boards_by_cpu() { boards_by_field 3 "$@" ; }
206 boards_by_soc() { boards_by_field 6 "$@" ; }
208 #########################################################################
210 #########################################################################
212 LIST_5xx="$(boards_by_cpu mpc5xx)"
214 #########################################################################
216 #########################################################################
218 LIST_5xxx="$(boards_by_cpu mpc5xxx)"
220 #########################################################################
222 #########################################################################
224 LIST_512x="$(boards_by_cpu mpc512x)"
226 #########################################################################
228 #########################################################################
230 LIST_8xx="$(boards_by_cpu mpc8xx)"
232 #########################################################################
234 #########################################################################
236 LIST_4xx="$(boards_by_cpu ppc4xx)"
238 #########################################################################
240 #########################################################################
242 LIST_8220="$(boards_by_cpu mpc8220)"
244 #########################################################################
246 #########################################################################
248 LIST_824x="$(boards_by_cpu mpc824x)"
250 #########################################################################
251 ## MPC8260 Systems (includes 8250, 8255 etc.)
252 #########################################################################
254 LIST_8260="$(boards_by_cpu mpc8260)"
256 #########################################################################
257 ## MPC83xx Systems (includes 8349, etc.)
258 #########################################################################
260 LIST_83xx="$(boards_by_cpu mpc83xx)"
262 #########################################################################
263 ## MPC85xx Systems (includes 8540, 8560 etc.)
264 #########################################################################
266 LIST_85xx="$(boards_by_cpu mpc85xx)"
268 #########################################################################
270 #########################################################################
272 LIST_86xx="$(boards_by_cpu mpc86xx)"
274 #########################################################################
276 #########################################################################
278 LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
280 #########################################################################
282 #########################################################################
305 # Alias "ppc" -> "powerpc" to not break compatibility with older scripts
306 # still using "ppc" instead of "powerpc"
311 #########################################################################
313 #########################################################################
315 LIST_SA="$(boards_by_cpu sa1100)"
317 #########################################################################
319 #########################################################################
321 LIST_ARM9="$(boards_by_cpu arm920t) \
322 $(boards_by_cpu arm926ejs) \
323 $(boards_by_cpu arm925t) \
326 #########################################################################
328 #########################################################################
329 LIST_ARM11="$(boards_by_cpu arm1136) \
336 #########################################################################
338 #########################################################################
340 LIST_ARMV7="$(boards_by_cpu armv7)"
342 #########################################################################
344 #########################################################################
346 LIST_at91="$(boards_by_soc at91)"
348 #########################################################################
350 #########################################################################
352 LIST_pxa="$(boards_by_cpu pxa)"
354 LIST_ixp="$(boards_by_cpu ixp)
359 #########################################################################
361 #########################################################################
374 #########################################################################
375 ## MIPS Systems (default = big endian)
376 #########################################################################
383 vct_platinum_onenand \
384 vct_platinum_onenand_small \
386 vct_platinumavc_small \
387 vct_platinumavc_onenand \
388 vct_platinumavc_onenand_small \
391 vct_premium_onenand \
392 vct_premium_onenand_small \
409 #########################################################################
410 ## MIPS Systems (little endian)
411 #########################################################################
425 #########################################################################
427 #########################################################################
429 LIST_openrisc="$(boards_by_arch openrisc)"
431 #########################################################################
433 #########################################################################
435 LIST_x86="$(boards_by_arch x86)"
437 #########################################################################
439 #########################################################################
441 LIST_nios2="$(boards_by_arch nios2)"
443 #########################################################################
444 ## MicroBlaze Systems
445 #########################################################################
447 LIST_microblaze="$(boards_by_arch microblaze)"
449 #########################################################################
451 #########################################################################
453 LIST_m68k="$(boards_by_arch m68k)
455 EB+MCF-EV123_internal \
461 LIST_coldfire=${LIST_m68k}
463 #########################################################################
465 #########################################################################
467 LIST_avr32="$(boards_by_arch avr32)"
469 #########################################################################
471 #########################################################################
473 LIST_blackfin="$(boards_by_arch blackfin)"
475 #########################################################################
477 #########################################################################
479 LIST_sh2="$(boards_by_cpu sh2)"
480 LIST_sh3="$(boards_by_cpu sh3)"
481 LIST_sh4="$(boards_by_cpu sh4)"
483 LIST_sh="$(boards_by_arch sh)"
485 #########################################################################
487 #########################################################################
489 LIST_sparc="$(boards_by_arch sparc)"
491 #########################################################################
493 #########################################################################
495 LIST_nds32="$(boards_by_arch nds32)"
497 #-----------------------------------------------------------------------
499 get_target_location() {
507 local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg`
509 if [ -z "${line}" ] ; then echo "" ; return ; fi
513 # add default board name if needed
514 [ $# = 3 ] && set ${line} ${1}
516 CONFIG_NAME="${1%_config}"
518 [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
520 if [ "$4" = "-" ] ; then
526 [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
527 [ $# -gt 6 ] && [ "$7" != "-" ] && {
534 # Assign board directory to BOARDIR variable
535 if [ -z "${vendor}" ] ; then
538 BOARDDIR=${vendor}/${board}
541 echo "${CONFIG_NAME}:${BOARDDIR}"
544 get_target_maintainers() {
545 local name=`echo $1 | cut -d : -f 1`
547 if ! grep -qsi "[[:blank:]]${name}[[:blank:]]" MAINTAINERS ; then
552 local line=`tac MAINTAINERS | grep -ni "[[:blank:]]${name}[[:blank:]]" | cut -d : -f 1`
553 local mail=`tac MAINTAINERS | tail -n +${line} | \
554 sed -n ":start /.*@.*/ { b mail } ; n ; b start ; :mail /.*@.*/ { p ; n ; b mail } ; q" | \
555 sed "s/^.*<//;s/>.*$//"`
560 if [ "$PRINT_MAINTS" != 'y' ] ; then
567 local loc=`get_target_location $1`
569 if [ -z "${loc}" ] ; then echo "ERROR" ; return ; fi
571 local maintainers_result=`get_target_maintainers ${loc} | tr " " "\n"`
573 if [ "$MAINTAINERS_ONLY" != 'y' ] ; then
575 local dir=`echo ${loc} | cut -d ":" -f 2`
576 local cfg=`echo ${loc} | cut -d ":" -f 1`
577 local git_result=`git log --format=%aE board/${dir} \
578 include/configs/${cfg}.h | grep "@"`
579 local git_result_recent=`echo ${git_result} | tr " " "\n" | \
581 local git_result_top=`echo ${git_result} | tr " " "\n" | \
582 sort | uniq -c | sort -nr | head -n 3 | \
583 sed "s/^ \+[0-9]\+ \+//"`
585 echo -e "$git_result_recent\n$git_result_top\n$maintainers_result" | \
586 sort -u | tr "\n" " " | sed "s/ $//" ;
588 echo -e "$maintainers_result" | sort -u | tr "\n" " " | \
598 if [ "$ONLY_LIST" == 'y' ] ; then
599 list_target ${target}
603 ${MAKE} distclean >/dev/null
604 ${MAKE} -s ${target}_config
606 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
607 | tee ${LOG_DIR}/$target.ERR
609 # Check for 'make' errors
610 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
614 if [ -s ${LOG_DIR}/$target.ERR ] ; then
615 ERR_CNT=$((ERR_CNT + 1))
616 ERR_LIST="${ERR_LIST} $target"
618 rm ${LOG_DIR}/$target.ERR
621 TOTAL_CNT=$((TOTAL_CNT + 1))
623 OBJS=${BUILD_DIR}/u-boot
624 if [ -e ${BUILD_DIR}/spl/u-boot-spl ]; then
625 OBJS="${OBJS} ${BUILD_DIR}/spl/u-boot-spl"
628 ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG
632 # If a LIST_xxx var exists, use it. But avoid variable
633 # expansion in the eval when a board name contains certain
634 # characters that the shell interprets.
637 *) list=$(eval echo '${LIST_'$t'}') ;;
639 if [ -n "${list}" ] ; then
640 build_targets ${list}
647 #-----------------------------------------------------------------------
650 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
652 echo "--------------------- SUMMARY ----------------------------"
653 echo "Boards compiled: ${TOTAL_CNT}"
654 if [ ${ERR_CNT} -gt 0 ] ; then
655 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
657 echo "----------------------------------------------------------"
662 #-----------------------------------------------------------------------
664 # Build target groups selected by options, plus any command line args
665 set -- ${SELECTED} "$@"
666 # run PowerPC by default
667 [ $# = 0 ] && set -- powerpc