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 #########################################################################
88 #########################################################################
90 #########################################################################
98 #########################################################################
100 #########################################################################
179 #########################################################################
181 #########################################################################
275 xilinx-ppc440-generic \
276 xilinx-ppc440-generic_flash \
284 #########################################################################
286 #########################################################################
293 #########################################################################
295 #########################################################################
320 #########################################################################
321 ## MPC8260 Systems (includes 8250, 8255 etc.)
322 #########################################################################
356 #########################################################################
357 ## MPC83xx Systems (includes 8349, etc.)
358 #########################################################################
364 MPC8313ERDB_NAND_66 \
387 #########################################################################
388 ## MPC85xx Systems (includes 8540, 8560 etc.)
389 #########################################################################
434 sbc8548_PCI_33_PCIE \
435 sbc8548_PCI_66_PCIE \
451 #########################################################################
453 #########################################################################
462 #########################################################################
464 #########################################################################
486 #########################################################################
488 #########################################################################
512 #########################################################################
514 #########################################################################
524 #########################################################################
526 #########################################################################
542 #########################################################################
544 #########################################################################
594 davinci_dm355leopard \
598 #########################################################################
600 #########################################################################
606 #########################################################################
608 #########################################################################
623 #########################################################################
624 ## ARM Cortex-A8 Systems
625 #########################################################################
626 LIST_ARM_CORTEX_A8=" \
638 #########################################################################
640 #########################################################################
670 #########################################################################
672 #########################################################################
703 #########################################################################
705 #########################################################################
713 ${LIST_ARM_CORTEX_A8} \
719 #########################################################################
720 ## MIPS Systems (default = big endian)
721 #########################################################################
728 vct_platinum_onenand \
729 vct_platinum_onenand_small \
731 vct_platinumavc_small \
732 vct_platinumavc_onenand \
733 vct_platinumavc_onenand_small \
736 vct_premium_onenand \
737 vct_premium_onenand_small \
759 #########################################################################
760 ## MIPS Systems (little endian)
761 #########################################################################
778 #########################################################################
780 #########################################################################
793 #########################################################################
795 #########################################################################
800 ADNPESC1_DNPEVA2_base_32\
808 #########################################################################
810 #########################################################################
820 #########################################################################
821 ## MicroBlaze Systems
822 #########################################################################
828 #########################################################################
830 #########################################################################
835 EB+MCF-EV123_internal \
857 #########################################################################
859 #########################################################################
872 #########################################################################
874 #########################################################################
903 #########################################################################
905 #########################################################################
933 #########################################################################
935 #########################################################################
937 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
939 #-----------------------------------------------------------------------
941 #----- for now, just run PPC by default -----
942 [ $# = 0 ] && set $LIST_ppc
944 #-----------------------------------------------------------------------
949 ${MAKE} distclean >/dev/null
950 ${MAKE} ${target}_config
952 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
953 | tee ${LOG_DIR}/$target.ERR
955 # Check for 'make' errors
956 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
960 if [ -s ${LOG_DIR}/$target.ERR ] ; then
961 ERR_CNT=$((ERR_CNT + 1))
962 ERR_LIST="${ERR_LIST} $target"
964 rm ${LOG_DIR}/$target.ERR
967 TOTAL_CNT=$((TOTAL_CNT + 1))
969 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
970 | tee -a ${LOG_DIR}/$target.MAKELOG
973 #-----------------------------------------------------------------------
977 echo "--------------------- SUMMARY ----------------------------"
978 echo "Boards compiled: ${TOTAL_CNT}"
979 if [ ${ERR_CNT} -gt 0 ] ; then
980 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
982 echo "----------------------------------------------------------"
987 #-----------------------------------------------------------------------
991 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
998 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
1003 for target in `eval echo '$LIST_'${arg}`
1005 build_target ${target}
1008 *) build_target ${arg}