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: ./)
37 BUILD_NBUILDS number of parallel targets (default: 1)
40 - build all Power Architecture boards:
42 MAKEALL --arch powerpc
44 - build all PowerPC boards manufactured by vendor "esd":
45 MAKEALL -a powerpc -v esd
46 - build all PowerPC boards manufactured either by "keymile" or "siemens":
47 MAKEALL -a powerpc -v keymile -v siemens
48 - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards:
49 MAKEALL -c mpc83xx -v freescale 4xx
54 SHORT_OPTS="ha:c:v:s:lmM"
55 LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list,maintainers,mails"
57 # Option processing based on util-linux-2.13/getopt-parse.bash
59 # Note that we use `"$@"' to let each command-line parameter expand to a
60 # separate word. The quotes around `$@' are essential!
61 # We need TEMP as the `eval set --' would nuke the return value of
63 TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
66 [ $? != 0 ] && usage 1
68 # Note the quotes around `$TEMP': they are essential!
79 # echo "Option ARCH: argument \`$2'"
80 if [ "$opt_a" ] ; then
81 opt_a="${opt_a%)} || \$2 == \"$2\")"
83 opt_a="(\$2 == \"$2\")"
88 # echo "Option CPU: argument \`$2'"
89 if [ "$opt_c" ] ; then
90 opt_c="${opt_c%)} || \$3 == \"$2\" || \$3 ~ /$2:/)"
92 opt_c="(\$3 == \"$2\" || \$3 ~ /$2:/)"
97 # echo "Option SoC: argument \`$2'"
98 if [ "$opt_s" ] ; then
99 opt_s="${opt_s%)} || \$6 == \"$2\")"
101 opt_s="(\$6 == \"$2\")"
106 # echo "Option VENDOR: argument \`$2'"
107 if [ "$opt_v" ] ; then
108 opt_v="${opt_v%)} || \$5 == \"$2\")"
110 opt_v="(\$5 == \"$2\")"
131 echo "Internal error!" >&2 ; exit 1 ;;
134 # echo "Remaining arguments:"
135 # for arg do echo '--> '"\`$arg'" ; done
138 [ "$opt_a" ] && FILTER="${FILTER} && $opt_a"
139 [ "$opt_c" ] && FILTER="${FILTER} && $opt_c"
140 [ "$opt_s" ] && FILTER="${FILTER} && $opt_s"
141 [ "$opt_v" ] && FILTER="${FILTER} && $opt_v"
143 if [ "$SELECTED" ] ; then
144 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
146 # Make sure some boards from boards.cfg are actually found
147 if [ -z "$SELECTED" ] ; then
148 echo "Error: No boards selected, invalid arguments"
153 #########################################################################
155 # Print statistics when we exit
159 # Determine number of CPU cores if no default was set
160 : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
162 if [ "$BUILD_NCPUS" -gt 1 ]
164 JOBS="-j $((BUILD_NCPUS + 1))"
170 if [ "${CROSS_COMPILE}" ] ; then
171 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
176 if [ "${MAKEALL_LOGDIR}" ] ; then
177 LOG_DIR=${MAKEALL_LOGDIR}
182 : ${BUILD_NBUILDS:=1}
185 if [ "${BUILD_NBUILDS}" -gt 1 ] ; then
187 : ${BUILD_DIR:=./build}
188 mkdir -p "${BUILD_DIR}/ERR"
189 find "${BUILD_DIR}/ERR/" -type f -exec rm -f {} +
194 OUTPUT_PREFIX="${BUILD_DIR}"
196 [ -d ${LOG_DIR} ] || mkdir "${LOG_DIR}" || exit 1
197 find "${LOG_DIR}/" -type f -exec rm -f {} +
201 # Keep track of the number of builds and errors
211 # Helper funcs for parsing boards.cfg
215 [ -n "$3" ] && FS="$3"
220 '($1 !~ /^#/ && $field == select) { print $1 }' \
223 boards_by_arch() { boards_by_field 2 "$@" ; }
224 boards_by_cpu() { boards_by_field 3 "$@" "[: \t]+" ; }
225 boards_by_soc() { boards_by_field 6 "$@" ; }
227 #########################################################################
229 #########################################################################
231 LIST_5xx="$(boards_by_cpu mpc5xx)"
233 #########################################################################
235 #########################################################################
237 LIST_5xxx="$(boards_by_cpu mpc5xxx)"
239 #########################################################################
241 #########################################################################
243 LIST_512x="$(boards_by_cpu mpc512x)"
245 #########################################################################
247 #########################################################################
249 LIST_8xx="$(boards_by_cpu mpc8xx)"
251 #########################################################################
253 #########################################################################
255 LIST_4xx="$(boards_by_cpu ppc4xx)"
257 #########################################################################
259 #########################################################################
261 LIST_8220="$(boards_by_cpu mpc8220)"
263 #########################################################################
265 #########################################################################
267 LIST_824x="$(boards_by_cpu mpc824x)"
269 #########################################################################
270 ## MPC8260 Systems (includes 8250, 8255 etc.)
271 #########################################################################
273 LIST_8260="$(boards_by_cpu mpc8260)"
275 #########################################################################
276 ## MPC83xx Systems (includes 8349, etc.)
277 #########################################################################
279 LIST_83xx="$(boards_by_cpu mpc83xx)"
281 #########################################################################
282 ## MPC85xx Systems (includes 8540, 8560 etc.)
283 #########################################################################
285 LIST_85xx="$(boards_by_cpu mpc85xx)"
287 #########################################################################
289 #########################################################################
291 LIST_86xx="$(boards_by_cpu mpc86xx)"
293 #########################################################################
295 #########################################################################
297 LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
299 #########################################################################
301 #########################################################################
324 # Alias "ppc" -> "powerpc" to not break compatibility with older scripts
325 # still using "ppc" instead of "powerpc"
330 #########################################################################
332 #########################################################################
334 LIST_SA="$(boards_by_cpu sa1100)"
336 #########################################################################
338 #########################################################################
340 LIST_ARM7="$(boards_by_cpu arm720t)"
342 #########################################################################
344 #########################################################################
346 LIST_ARM9="$(boards_by_cpu arm920t) \
347 $(boards_by_cpu arm926ejs) \
348 $(boards_by_cpu arm925t) \
349 $(boards_by_cpu arm946es) \
352 #########################################################################
354 #########################################################################
355 LIST_ARM11="$(boards_by_cpu arm1136) \
356 $(boards_by_cpu arm1176) \
359 #########################################################################
361 #########################################################################
363 LIST_ARMV7="$(boards_by_cpu armv7)"
365 #########################################################################
367 #########################################################################
369 LIST_at91="$(boards_by_soc at91)"
371 #########################################################################
373 #########################################################################
375 LIST_pxa="$(boards_by_cpu pxa)"
377 LIST_ixp="$(boards_by_cpu ixp)"
379 #########################################################################
381 #########################################################################
383 LIST_arm="$(boards_by_arch arm)"
385 #########################################################################
386 ## MIPS Systems (default = big endian)
387 #########################################################################
397 vct_platinum_onenand \
398 vct_platinum_onenand_small \
400 vct_platinumavc_small \
401 vct_platinumavc_onenand \
402 vct_platinumavc_onenand_small \
405 vct_premium_onenand \
406 vct_premium_onenand_small \
422 #########################################################################
423 ## MIPS Systems (little endian)
424 #########################################################################
438 #########################################################################
440 #########################################################################
442 LIST_openrisc="$(boards_by_arch openrisc)"
444 #########################################################################
446 #########################################################################
448 LIST_x86="$(boards_by_arch x86)"
450 #########################################################################
452 #########################################################################
454 LIST_nios2="$(boards_by_arch nios2)"
456 #########################################################################
457 ## MicroBlaze Systems
458 #########################################################################
460 LIST_microblaze="$(boards_by_arch microblaze)"
462 #########################################################################
464 #########################################################################
466 LIST_m68k="$(boards_by_arch m68k)"
467 LIST_coldfire=${LIST_m68k}
469 #########################################################################
471 #########################################################################
473 LIST_avr32="$(boards_by_arch avr32)"
475 #########################################################################
477 #########################################################################
479 LIST_blackfin="$(boards_by_arch blackfin)"
481 #########################################################################
483 #########################################################################
485 LIST_sh2="$(boards_by_cpu sh2)"
486 LIST_sh3="$(boards_by_cpu sh3)"
487 LIST_sh4="$(boards_by_cpu sh4)"
489 LIST_sh="$(boards_by_arch sh)"
491 #########################################################################
493 #########################################################################
495 LIST_sparc="$(boards_by_arch sparc)"
497 #########################################################################
499 #########################################################################
501 LIST_nds32="$(boards_by_arch nds32)"
503 #-----------------------------------------------------------------------
505 get_target_location() {
513 local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg`
515 if [ -z "${line}" ] ; then echo "" ; return ; fi
519 # add default board name if needed
520 [ $# = 3 ] && set ${line} ${1}
522 CONFIG_NAME="${1%_config}"
524 [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
526 if [ "$4" = "-" ] ; then
532 [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
533 [ $# -gt 6 ] && [ "$7" != "-" ] && {
540 # Assign board directory to BOARDIR variable
541 if [ -z "${vendor}" ] ; then
544 BOARDDIR=${vendor}/${board}
547 echo "${CONFIG_NAME}:${BOARDDIR}"
550 get_target_maintainers() {
551 local name=`echo $1 | cut -d : -f 1`
553 if ! grep -qsi "[[:blank:]]${name}[[:blank:]]" MAINTAINERS ; then
558 local line=`tac MAINTAINERS | grep -ni "[[:blank:]]${name}[[:blank:]]" | cut -d : -f 1`
559 local mail=`tac MAINTAINERS | tail -n +${line} | \
560 sed -n ":start /.*@.*/ { b mail } ; n ; b start ; :mail /.*@.*/ { p ; n ; b mail } ; q" | \
561 sed "s/^.*<//;s/>.*$//"`
566 if [ "$PRINT_MAINTS" != 'y' ] ; then
573 local loc=`get_target_location $1`
575 if [ -z "${loc}" ] ; then echo "ERROR" ; return ; fi
577 local maintainers_result=`get_target_maintainers ${loc} | tr " " "\n"`
579 if [ "$MAINTAINERS_ONLY" != 'y' ] ; then
581 local dir=`echo ${loc} | cut -d ":" -f 2`
582 local cfg=`echo ${loc} | cut -d ":" -f 1`
583 local git_result=`git log --format=%aE board/${dir} \
584 include/configs/${cfg}.h | grep "@"`
585 local git_result_recent=`echo ${git_result} | tr " " "\n" | \
587 local git_result_top=`echo ${git_result} | tr " " "\n" | \
588 sort | uniq -c | sort -nr | head -n 3 | \
589 sed "s/^ \+[0-9]\+ \+//"`
591 echo -e "$git_result_recent\n$git_result_top\n$maintainers_result" | \
592 sort -u | tr "\n" " " | sed "s/ $//" ;
594 echo -e "$maintainers_result" | sort -u | tr "\n" " " | \
601 # Each finished build will have a file called ${donep}${n},
602 # where n is the index of the build. Each build
603 # we've already noted as finished will have ${skipp}${n}.
604 # The code managing the build process will use this information
605 # to ensure that only BUILD_NBUILDS builds are in flight at once
606 donep="${LOG_DIR}/._done_"
607 skipp="${LOG_DIR}/._skip_"
613 if [ "$ONLY_LIST" == 'y' ] ; then
614 list_target ${target}
618 if [ $BUILD_MANY == 1 ] ; then
619 output_dir="${OUTPUT_PREFIX}/${target}"
620 mkdir -p "${output_dir}"
622 output_dir="${OUTPUT_PREFIX}"
625 export BUILD_DIR="${output_dir}"
627 ${MAKE} distclean >/dev/null
628 ${MAKE} -s ${target}_config
630 ${MAKE} ${JOBS} all \
631 >${LOG_DIR}/$target.MAKELOG 2> ${LOG_DIR}/$target.ERR
633 # Check for 'make' errors
634 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
638 if [ $BUILD_MANY == 1 ] ; then
641 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
642 cp ${LOG_DIR}/${target}.ERR ${OUTPUT_PREFIX}/ERR/${target}
644 rm ${LOG_DIR}/${target}.ERR
647 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
648 if grep -iw error ${LOG_DIR}/${target}.ERR ; then
649 : $(( ERR_CNT += 1 ))
650 ERR_LIST="${ERR_LIST} $target"
652 : $(( WRN_CNT += 1 ))
653 WRN_LIST="${WRN_LIST} $target"
656 rm ${LOG_DIR}/${target}.ERR
660 OBJS=${output_dir}/u-boot
661 if [ -e ${output_dir}/spl/u-boot-spl ]; then
662 OBJS="${OBJS} ${output_dir}/spl/u-boot-spl"
665 ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG
667 [ -e "${LOG_DIR}/${target}.ERR" ] && cat "${LOG_DIR}/${target}.ERR"
669 touch "${donep}${build_idx}"
673 search_idx=${OLDEST_IDX}
674 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
677 if [ -e "${donep}${search_idx}" ] ; then
678 : $(( CURRENT_CNT-- ))
679 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
680 : $(( OLDEST_IDX++ ))
682 # Only want to count it once
683 rm -f "${donep}${search_idx}"
684 touch "${skipp}${search_idx}"
685 elif [ -e "${skipp}${search_idx}" ] ; then
686 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
687 : $(( OLDEST_IDX++ ))
689 : $(( search_idx++ ))
690 if [ ${search_idx} -gt ${TOTAL_CNT} ] ; then
691 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
692 search_idx=${OLDEST_IDX}
703 # If a LIST_xxx var exists, use it. But avoid variable
704 # expansion in the eval when a board name contains certain
705 # characters that the shell interprets.
708 *) list=$(eval echo '${LIST_'$t'}') ;;
710 if [ -n "${list}" ] ; then
711 build_targets ${list}
713 : $((TOTAL_CNT += 1))
714 : $((CURRENT_CNT += 1))
715 rm -f "${donep}${TOTAL_CNT}"
716 rm -f "${skipp}${TOTAL_CNT}"
717 if [ $BUILD_MANY == 1 ] ; then
718 build_target ${t} ${TOTAL_CNT} &
720 build_target ${t} ${TOTAL_CNT}
724 # We maintain a running count of all the builds we have done.
725 # Each finished build will have a file called ${donep}${n},
726 # where n is the index of the build. Each build
727 # we've already noted as finished will have ${skipp}${n}.
728 # We track the current index via TOTAL_CNT, and the oldest
729 # index. When we exceed the maximum number of parallel builds,
730 # We look from oldest to current for builds that have completed,
731 # and update the current count and oldest index as appropriate.
732 # If we've gone through the entire list, wait a second, and
733 # reprocess the entire list until we find a build that has
735 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
741 #-----------------------------------------------------------------------
750 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
752 rm -f ${donep}* ${skipp}*
754 if [ $BUILD_MANY == 1 ] && [ -e "${OUTPUT_PREFIX}/ERR" ] ; then
755 ERR_LIST=`grep -riwl error ${OUTPUT_PREFIX}/ERR/`
756 ERR_LIST=`for f in $ERR_LIST ; do echo -n " $(basename $f)" ; done`
757 ERR_CNT=`echo $ERR_LIST | wc -w | awk '{print $1}'`
758 WRN_LIST=`grep -riwL error ${OUTPUT_PREFIX}/ERR/`
759 WRN_LIST=`for f in $WRN_LIST ; do echo -n " $(basename $f)" ; done`
760 WRN_CNT=`echo $WRN_LIST | wc -w | awk '{print $1}'`
764 echo "--------------------- SUMMARY ----------------------------"
765 echo "Boards compiled: ${TOTAL_CNT}"
766 if [ ${ERR_CNT} -gt 0 ] ; then
767 echo "Boards with errors: ${ERR_CNT} (${ERR_LIST} )"
769 if [ ${WRN_CNT} -gt 0 ] ; then
770 echo "Boards with warnings but no errors: ${WRN_CNT} (${WRN_LIST} )"
772 echo "----------------------------------------------------------"
774 if [ $BUILD_MANY == 1 ] ; then
781 #-----------------------------------------------------------------------
783 # Build target groups selected by options, plus any command line args
784 set -- ${SELECTED} "$@"
785 # run PowerPC by default
786 [ $# = 0 ] && set -- powerpc