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 -C, --check Enable build checking
23 -n, --continue Continue (skip boards already built)
24 -r, --rebuild-errors Rebuild any boards that errored
25 -h, --help This help output
27 Selections by these options are logically ANDed; if the same option
28 is used repeatedly, such selections are ORed. So "-v FOO -v BAR"
29 will select all configurations where the vendor is either FOO or
30 BAR. Any additional arguments specified on the command line are
31 always build additionally. See the boards.cfg file for more info.
33 If no boards are specified, then the default is "powerpc".
35 Environment variables:
36 BUILD_NCPUS number of parallel make jobs (default: auto)
37 CROSS_COMPILE cross-compiler toolchain prefix (default: "")
38 CROSS_COMPILE_<ARCH> cross-compiler toolchain prefix for
39 architecture "ARCH". Substitute "ARCH" for any
40 supported architecture (default: "")
41 MAKEALL_LOGDIR output all logs to here (default: ./LOG/)
42 BUILD_DIR output build directory (default: ./)
43 BUILD_NBUILDS number of parallel targets (default: 1)
46 - build all Power Architecture boards:
48 MAKEALL --arch powerpc
50 - build all PowerPC boards manufactured by vendor "esd":
51 MAKEALL -a powerpc -v esd
52 - build all PowerPC boards manufactured either by "keymile" or "siemens":
53 MAKEALL -a powerpc -v keymile -v siemens
54 - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards:
55 MAKEALL -c mpc83xx -v freescale 4xx
60 SHORT_OPTS="ha:c:v:s:lmMCnr"
61 LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list,maintainers,mails,check,continue,rebuild-errors"
63 # Option processing based on util-linux-2.13/getopt-parse.bash
65 # Note that we use `"$@"' to let each command-line parameter expand to a
66 # separate word. The quotes around `$@' are essential!
67 # We need TEMP as the `eval set --' would nuke the return value of
69 TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
72 [ $? != 0 ] && usage 1
74 # Note the quotes around `$TEMP': they are essential!
87 # echo "Option ARCH: argument \`$2'"
88 if [ "$opt_a" ] ; then
89 opt_a="${opt_a%)} || \$2 == \"$2\")"
91 opt_a="(\$2 == \"$2\")"
96 # echo "Option CPU: argument \`$2'"
97 if [ "$opt_c" ] ; then
98 opt_c="${opt_c%)} || \$3 == \"$2\" || \$3 ~ /$2:/)"
100 opt_c="(\$3 == \"$2\" || \$3 ~ /$2:/)"
105 # echo "Option SoC: argument \`$2'"
106 if [ "$opt_s" ] ; then
107 opt_s="${opt_s%)} || \$6 == \"$2\" || \$6 ~ /$2/)"
109 opt_s="(\$6 == \"$2\" || \$6 ~ /$2/)"
114 # echo "Option VENDOR: argument \`$2'"
115 if [ "$opt_v" ] ; then
116 opt_v="${opt_v%)} || \$5 == \"$2\")"
118 opt_v="(\$5 == \"$2\")"
148 echo "Internal error!" >&2 ; exit 1 ;;
151 # echo "Remaining arguments:"
152 # for arg do echo '--> '"\`$arg'" ; done
155 [ "$opt_a" ] && FILTER="${FILTER} && $opt_a"
156 [ "$opt_c" ] && FILTER="${FILTER} && $opt_c"
157 [ "$opt_s" ] && FILTER="${FILTER} && $opt_s"
158 [ "$opt_v" ] && FILTER="${FILTER} && $opt_v"
160 if [ "$SELECTED" ] ; then
161 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
163 # Make sure some boards from boards.cfg are actually found
164 if [ -z "$SELECTED" ] ; then
165 echo "Error: No boards selected, invalid arguments"
170 #########################################################################
172 # Print statistics when we exit
176 # Determine number of CPU cores if no default was set
177 : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
179 if [ "$BUILD_NCPUS" -gt 1 ]
181 JOBS="-j $((BUILD_NCPUS + 1))"
186 if [ "${MAKEALL_LOGDIR}" ] ; then
187 LOG_DIR=${MAKEALL_LOGDIR}
192 : ${BUILD_NBUILDS:=1}
195 if [ "${BUILD_NBUILDS}" -gt 1 ] ; then
197 : ${BUILD_DIR:=./build}
198 mkdir -p "${BUILD_DIR}/ERR"
199 find "${BUILD_DIR}/ERR/" -type f -exec rm -f {} +
204 OUTPUT_PREFIX="${BUILD_DIR}"
206 [ -d ${LOG_DIR} ] || mkdir "${LOG_DIR}" || exit 1
207 if [ "$CONTINUE" != 'y' -a "$REBUILD_ERRORS" != 'y' ] ; then
208 find "${LOG_DIR}/" -type f -exec rm -f {} +
213 # Keep track of the number of builds and errors
224 # Helper funcs for parsing boards.cfg
228 [ -n "$3" ] && FS="$3"
233 '($1 !~ /^#/ && $field == select) { print $1 }' \
236 boards_by_arch() { boards_by_field 2 "$@" ; }
237 boards_by_cpu() { boards_by_field 3 "$@" "[: \t]+" ; }
238 boards_by_soc() { boards_by_field 6 "$@" ; }
240 #########################################################################
242 #########################################################################
244 LIST_5xx="$(boards_by_cpu mpc5xx)"
246 #########################################################################
248 #########################################################################
250 LIST_5xxx="$(boards_by_cpu mpc5xxx)"
252 #########################################################################
254 #########################################################################
256 LIST_512x="$(boards_by_cpu mpc512x)"
258 #########################################################################
260 #########################################################################
262 LIST_8xx="$(boards_by_cpu mpc8xx)"
264 #########################################################################
266 #########################################################################
268 LIST_4xx="$(boards_by_cpu ppc4xx)"
270 #########################################################################
272 #########################################################################
274 LIST_8220="$(boards_by_cpu mpc8220)"
276 #########################################################################
278 #########################################################################
280 LIST_824x="$(boards_by_cpu mpc824x)"
282 #########################################################################
283 ## MPC8260 Systems (includes 8250, 8255 etc.)
284 #########################################################################
286 LIST_8260="$(boards_by_cpu mpc8260)"
288 #########################################################################
289 ## MPC83xx Systems (includes 8349, etc.)
290 #########################################################################
292 LIST_83xx="$(boards_by_cpu mpc83xx)"
294 #########################################################################
295 ## MPC85xx Systems (includes 8540, 8560 etc.)
296 #########################################################################
298 LIST_85xx="$(boards_by_cpu mpc85xx)"
300 #########################################################################
302 #########################################################################
304 LIST_86xx="$(boards_by_cpu mpc86xx)"
306 #########################################################################
308 #########################################################################
310 LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
312 #########################################################################
314 #########################################################################
337 # Alias "ppc" -> "powerpc" to not break compatibility with older scripts
338 # still using "ppc" instead of "powerpc"
343 #########################################################################
345 #########################################################################
347 LIST_SA="$(boards_by_cpu sa1100)"
349 #########################################################################
351 #########################################################################
353 LIST_ARM7="$(boards_by_cpu arm720t)"
355 #########################################################################
357 #########################################################################
359 LIST_ARM9="$(boards_by_cpu arm920t) \
360 $(boards_by_cpu arm926ejs) \
361 $(boards_by_cpu arm925t) \
362 $(boards_by_cpu arm946es) \
365 #########################################################################
367 #########################################################################
368 LIST_ARM11="$(boards_by_cpu arm1136) \
369 $(boards_by_cpu arm1176) \
372 #########################################################################
374 #########################################################################
376 LIST_ARMV7="$(boards_by_cpu armv7)"
378 #########################################################################
380 #########################################################################
382 LIST_at91="$(boards_by_soc at91)"
384 #########################################################################
386 #########################################################################
388 LIST_pxa="$(boards_by_cpu pxa)"
390 LIST_ixp="$(boards_by_cpu ixp)"
392 #########################################################################
394 #########################################################################
396 LIST_spear="$(boards_by_soc spear)"
398 #########################################################################
400 #########################################################################
402 LIST_arm="$(boards_by_arch arm)"
404 #########################################################################
405 ## MIPS Systems (default = big endian)
406 #########################################################################
416 vct_platinum_onenand \
417 vct_platinum_onenand_small \
419 vct_platinumavc_small \
420 vct_platinumavc_onenand \
421 vct_platinumavc_onenand_small \
424 vct_premium_onenand \
425 vct_premium_onenand_small \
441 #########################################################################
442 ## MIPS Systems (little endian)
443 #########################################################################
457 #########################################################################
459 #########################################################################
461 LIST_openrisc="$(boards_by_arch openrisc)"
463 #########################################################################
465 #########################################################################
467 LIST_x86="$(boards_by_arch x86)"
469 #########################################################################
471 #########################################################################
473 LIST_nios2="$(boards_by_arch nios2)"
475 #########################################################################
476 ## MicroBlaze Systems
477 #########################################################################
479 LIST_microblaze="$(boards_by_arch microblaze)"
481 #########################################################################
483 #########################################################################
485 LIST_m68k="$(boards_by_arch m68k)"
486 LIST_coldfire=${LIST_m68k}
488 #########################################################################
490 #########################################################################
492 LIST_avr32="$(boards_by_arch avr32)"
494 #########################################################################
496 #########################################################################
498 LIST_blackfin="$(boards_by_arch blackfin)"
500 #########################################################################
502 #########################################################################
504 LIST_sh2="$(boards_by_cpu sh2)"
505 LIST_sh3="$(boards_by_cpu sh3)"
506 LIST_sh4="$(boards_by_cpu sh4)"
508 LIST_sh="$(boards_by_arch sh)"
510 #########################################################################
512 #########################################################################
514 LIST_sparc="$(boards_by_arch sparc)"
516 #########################################################################
518 #########################################################################
520 LIST_nds32="$(boards_by_arch nds32)"
522 #-----------------------------------------------------------------------
524 get_target_location() {
532 local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg`
534 if [ -z "${line}" ] ; then echo "" ; return ; fi
538 # add default board name if needed
539 [ $# = 3 ] && set ${line} ${1}
541 CONFIG_NAME="${1%_config}"
543 [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
545 if [ "$4" = "-" ] ; then
551 [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
552 [ $# -gt 6 ] && [ "$7" != "-" ] && {
559 # Assign board directory to BOARDIR variable
560 if [ -z "${vendor}" ] ; then
563 BOARDDIR=${vendor}/${board}
566 echo "${CONFIG_NAME}:${BOARDDIR}"
569 get_target_maintainers() {
570 local name=`echo $1 | cut -d : -f 1`
572 if ! grep -qsi "[[:blank:]]${name}[[:blank:]]" MAINTAINERS ; then
577 local line=`tac MAINTAINERS | grep -ni "[[:blank:]]${name}[[:blank:]]" | cut -d : -f 1`
578 local mail=`tac MAINTAINERS | tail -n +${line} | \
579 sed -n ":start /.*@.*/ { b mail } ; n ; b start ; :mail /.*@.*/ { p ; n ; b mail } ; q" | \
580 sed "s/^.*<//;s/>.*$//"`
588 local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg`
590 if [ -z "${line}" ] ; then echo "" ; return ; fi
597 if [ "$PRINT_MAINTS" != 'y' ] ; then
604 local loc=`get_target_location $1`
606 if [ -z "${loc}" ] ; then echo "ERROR" ; return ; fi
608 local maintainers_result=`get_target_maintainers ${loc} | tr " " "\n"`
610 if [ "$MAINTAINERS_ONLY" != 'y' ] ; then
612 local dir=`echo ${loc} | cut -d ":" -f 2`
613 local cfg=`echo ${loc} | cut -d ":" -f 1`
614 local git_result=`git log --format=%aE board/${dir} \
615 include/configs/${cfg}.h | grep "@"`
616 local git_result_recent=`echo ${git_result} | tr " " "\n" | \
618 local git_result_top=`echo ${git_result} | tr " " "\n" | \
619 sort | uniq -c | sort -nr | head -n 3 | \
620 sed "s/^ \+[0-9]\+ \+//"`
622 echo -e "$git_result_recent\n$git_result_top\n$maintainers_result" | \
623 sort -u | tr "\n" " " | sed "s/ $//" ;
625 echo -e "$maintainers_result" | sort -u | tr "\n" " " | \
632 # Each finished build will have a file called ${donep}${n},
633 # where n is the index of the build. Each build
634 # we've already noted as finished will have ${skipp}${n}.
635 # The code managing the build process will use this information
636 # to ensure that only BUILD_NBUILDS builds are in flight at once
637 donep="${LOG_DIR}/._done_"
638 skipp="${LOG_DIR}/._skip_"
640 build_target_killed() {
641 echo "Aborted $target build."
642 # Remove the logs for this board since it was aborted
643 rm -f ${LOG_DIR}/$target.MAKELOG ${LOG_DIR}/$target.ERR
651 if [ "$ONLY_LIST" == 'y' ] ; then
652 list_target ${target}
656 if [ $BUILD_MANY == 1 ] ; then
657 output_dir="${OUTPUT_PREFIX}/${target}"
658 mkdir -p "${output_dir}"
659 trap build_target_killed TERM
661 output_dir="${OUTPUT_PREFIX}"
664 export BUILD_DIR="${output_dir}"
666 target_arch=$(get_target_arch ${target})
667 eval cross_toolchain=\$CROSS_COMPILE_`echo $target_arch | tr '[:lower:]' '[:upper:]'`
668 if [ "${cross_toolchain}" ] ; then
669 MAKE="make CROSS_COMPILE=${cross_toolchain}"
670 elif [ "${CROSS_COMPILE}" ] ; then
671 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
676 ${MAKE} distclean >/dev/null
677 ${MAKE} -s ${target}_config
679 ${MAKE} ${JOBS} ${CHECK} all \
680 >${LOG_DIR}/$target.MAKELOG 2> ${LOG_DIR}/$target.ERR
682 # Check for 'make' errors
683 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
687 if [ $BUILD_MANY == 1 ] ; then
692 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
693 cp ${LOG_DIR}/${target}.ERR ${OUTPUT_PREFIX}/ERR/${target}
695 rm ${LOG_DIR}/${target}.ERR
698 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
699 if grep -iw error ${LOG_DIR}/${target}.ERR ; then
700 : $(( ERR_CNT += 1 ))
701 ERR_LIST="${ERR_LIST} $target"
703 : $(( WRN_CNT += 1 ))
704 WRN_LIST="${WRN_LIST} $target"
707 rm ${LOG_DIR}/${target}.ERR
711 OBJS=${output_dir}/u-boot
712 if [ -e ${output_dir}/spl/u-boot-spl ]; then
713 OBJS="${OBJS} ${output_dir}/spl/u-boot-spl"
716 ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG
718 [ -e "${LOG_DIR}/${target}.ERR" ] && cat "${LOG_DIR}/${target}.ERR"
720 touch "${donep}${build_idx}"
724 search_idx=${OLDEST_IDX}
725 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
728 if [ -e "${donep}${search_idx}" ] ; then
729 : $(( CURRENT_CNT-- ))
730 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
731 : $(( OLDEST_IDX++ ))
733 # Only want to count it once
734 rm -f "${donep}${search_idx}"
735 touch "${skipp}${search_idx}"
736 elif [ -e "${skipp}${search_idx}" ] ; then
737 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
738 : $(( OLDEST_IDX++ ))
740 : $(( search_idx++ ))
741 if [ ${search_idx} -gt ${TOTAL_CNT} ] ; then
742 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
743 search_idx=${OLDEST_IDX}
754 # If a LIST_xxx var exists, use it. But avoid variable
755 # expansion in the eval when a board name contains certain
756 # characters that the shell interprets.
759 *) list=$(eval echo '${LIST_'$t'}') ;;
761 if [ -n "${list}" ] ; then
762 build_targets ${list}
764 : $((TOTAL_CNT += 1))
765 : $((CURRENT_CNT += 1))
766 rm -f "${donep}${TOTAL_CNT}"
767 rm -f "${skipp}${TOTAL_CNT}"
768 if [ "$CONTINUE" = 'y' -a -e ${LOG_DIR}/$t.MAKELOG ] ; then
770 touch "${donep}${TOTAL_CNT}"
771 elif [ "$REBUILD_ERRORS" = 'y' -a ! -e ${LOG_DIR}/$t.ERR ] ; then
773 touch "${donep}${TOTAL_CNT}"
775 if [ $BUILD_MANY == 1 ] ; then
776 build_target ${t} ${TOTAL_CNT} &
779 build_target ${t} ${TOTAL_CNT}
785 # We maintain a running count of all the builds we have done.
786 # Each finished build will have a file called ${donep}${n},
787 # where n is the index of the build. Each build
788 # we've already noted as finished will have ${skipp}${n}.
789 # We track the current index via TOTAL_CNT, and the oldest
790 # index. When we exceed the maximum number of parallel builds,
791 # We look from oldest to current for builds that have completed,
792 # and update the current count and oldest index as appropriate.
793 # If we've gone through the entire list, wait a second, and
794 # reprocess the entire list until we find a build that has
796 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
802 #-----------------------------------------------------------------------
809 # Mac OS X is known to have BSD style ps
810 local pgid=$(ps -p $$ -o pgid | sed -e "/PGID/d")
811 children=$(ps -g $pgid -o pid | sed -e "/PID\|$$\|$pgid/d")
814 # everything else tries the GNU style
815 local pgid=$(ps -p $$ --no-headers -o "%r" | tr -d ' ')
816 children=$(pgrep -g $pgid | sed -e "/$$\|$pgid/d")
820 kill $children 2> /dev/null
821 wait $children 2> /dev/null
827 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
829 # Only count boards that completed
830 : $((TOTAL_CNT = `find ${skipp}* 2> /dev/null | wc -l`))
832 rm -f ${donep}* ${skipp}*
834 if [ $BUILD_MANY == 1 ] && [ -e "${OUTPUT_PREFIX}/ERR" ] ; then
835 ERR_LIST=`grep -riwl error ${OUTPUT_PREFIX}/ERR/`
836 ERR_LIST=`for f in $ERR_LIST ; do echo -n " $(basename $f)" ; done`
837 ERR_CNT=`echo $ERR_LIST | wc -w | awk '{print $1}'`
838 WRN_LIST=`grep -riwL error ${OUTPUT_PREFIX}/ERR/`
839 WRN_LIST=`for f in $WRN_LIST ; do echo -n " $(basename $f)" ; done`
840 WRN_CNT=`echo $WRN_LIST | wc -w | awk '{print $1}'`
842 # Remove the logs for any board that was interrupted
843 rm -f ${LOG_DIR}/${CUR_TGT}.MAKELOG ${LOG_DIR}/${CUR_TGT}.ERR
846 : $((TOTAL_CNT -= ${SKIP_CNT}))
848 echo "--------------------- SUMMARY ----------------------------"
849 if [ "$CONTINUE" = 'y' -o "$REBUILD_ERRORS" = 'y' ] ; then
850 echo "Boards skipped: ${SKIP_CNT}"
852 echo "Boards compiled: ${TOTAL_CNT}"
853 if [ ${ERR_CNT} -gt 0 ] ; then
854 echo "Boards with errors: ${ERR_CNT} (${ERR_LIST} )"
856 if [ ${WRN_CNT} -gt 0 ] ; then
857 echo "Boards with warnings but no errors: ${WRN_CNT} (${WRN_LIST} )"
859 echo "----------------------------------------------------------"
861 if [ $BUILD_MANY == 1 ] ; then
868 #-----------------------------------------------------------------------
870 # Build target groups selected by options, plus any command line args
871 set -- ${SELECTED} "$@"
872 # run PowerPC by default
873 [ $# = 0 ] && set -- powerpc