3 # Print statistics when we exit
7 # Determine number of CPU cores if no default was set
8 : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
10 if [ "$BUILD_NCPUS" -gt 1 ]
12 JOBS="-j $((BUILD_NCPUS + 1))"
18 if [ "${CROSS_COMPILE}" ] ; then
19 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
24 if [ "${MAKEALL_LOGDIR}" ] ; then
25 LOG_DIR=${MAKEALL_LOGDIR}
30 if [ ! "${BUILD_DIR}" ] ; then
34 [ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
38 # Keep track of the number of builds and errors
44 #########################################################################
46 #########################################################################
52 #########################################################################
54 #########################################################################
87 #########################################################################
89 #########################################################################
97 #########################################################################
99 #########################################################################
178 #########################################################################
180 #########################################################################
272 xilinx-ppc440-generic \
273 xilinx-ppc440-generic_flash \
281 #########################################################################
283 #########################################################################
290 #########################################################################
292 #########################################################################
316 #########################################################################
317 ## MPC8260 Systems (includes 8250, 8255 etc.)
318 #########################################################################
352 #########################################################################
353 ## MPC83xx Systems (includes 8349, etc.)
354 #########################################################################
360 MPC8313ERDB_NAND_66 \
383 #########################################################################
384 ## MPC85xx Systems (includes 8540, 8560 etc.)
385 #########################################################################
430 sbc8548_PCI_33_PCIE \
431 sbc8548_PCI_66_PCIE \
447 #########################################################################
449 #########################################################################
458 #########################################################################
460 #########################################################################
482 #########################################################################
484 #########################################################################
508 # Alias "ppc" -> "powerpc" to not break compatibility with older scripts
509 # still using "ppc" instead of "powerpc"
514 #########################################################################
516 #########################################################################
526 #########################################################################
528 #########################################################################
544 #########################################################################
546 #########################################################################
605 davinci_dm355leopard \
610 #########################################################################
612 #########################################################################
618 #########################################################################
620 #########################################################################
635 #########################################################################
636 ## ARM Cortex-A8 Systems
637 #########################################################################
638 LIST_ARM_CORTEX_A8=" \
651 #########################################################################
653 #########################################################################
685 #########################################################################
687 #########################################################################
718 #########################################################################
720 #########################################################################
728 ${LIST_ARM_CORTEX_A8} \
734 #########################################################################
735 ## MIPS Systems (default = big endian)
736 #########################################################################
743 vct_platinum_onenand \
744 vct_platinum_onenand_small \
746 vct_platinumavc_small \
747 vct_platinumavc_onenand \
748 vct_platinumavc_onenand_small \
751 vct_premium_onenand \
752 vct_premium_onenand_small \
774 #########################################################################
775 ## MIPS Systems (little endian)
776 #########################################################################
793 #########################################################################
795 #########################################################################
808 #########################################################################
810 #########################################################################
815 ADNPESC1_DNPEVA2_base_32\
823 #########################################################################
825 #########################################################################
835 #########################################################################
836 ## MicroBlaze Systems
837 #########################################################################
843 #########################################################################
845 #########################################################################
851 EB+MCF-EV123_internal \
873 #########################################################################
875 #########################################################################
888 #########################################################################
890 #########################################################################
920 #########################################################################
922 #########################################################################
950 #########################################################################
952 #########################################################################
954 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
956 #-----------------------------------------------------------------------
958 #----- for now, just run PowerPC by default -----
959 [ $# = 0 ] && set $LIST_powerpc
961 #-----------------------------------------------------------------------
966 ${MAKE} distclean >/dev/null
967 ${MAKE} ${target}_config
969 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
970 | tee ${LOG_DIR}/$target.ERR
972 # Check for 'make' errors
973 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
977 if [ -s ${LOG_DIR}/$target.ERR ] ; then
978 ERR_CNT=$((ERR_CNT + 1))
979 ERR_LIST="${ERR_LIST} $target"
981 rm ${LOG_DIR}/$target.ERR
984 TOTAL_CNT=$((TOTAL_CNT + 1))
986 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
987 | tee -a ${LOG_DIR}/$target.MAKELOG
990 #-----------------------------------------------------------------------
994 echo "--------------------- SUMMARY ----------------------------"
995 echo "Boards compiled: ${TOTAL_CNT}"
996 if [ ${ERR_CNT} -gt 0 ] ; then
997 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
999 echo "----------------------------------------------------------"
1004 #-----------------------------------------------------------------------
1008 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
1015 |ppc|powerpc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
1020 for target in `eval echo '$LIST_'${arg}`
1022 build_target ${target}
1025 *) build_target ${arg}