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 #########################################################################
98 #########################################################################
100 #########################################################################
179 #########################################################################
181 #########################################################################
275 xilinx-ppc440-generic \
276 xilinx-ppc440-generic_flash \
284 #########################################################################
286 #########################################################################
293 #########################################################################
295 #########################################################################
319 #########################################################################
320 ## MPC8260 Systems (includes 8250, 8255 etc.)
321 #########################################################################
355 #########################################################################
356 ## MPC83xx Systems (includes 8349, etc.)
357 #########################################################################
363 MPC8313ERDB_NAND_66 \
386 #########################################################################
387 ## MPC85xx Systems (includes 8540, 8560 etc.)
388 #########################################################################
434 sbc8548_PCI_33_PCIE \
435 sbc8548_PCI_66_PCIE \
451 #########################################################################
453 #########################################################################
463 #########################################################################
465 #########################################################################
487 #########################################################################
489 #########################################################################
513 # Alias "ppc" -> "powerpc" to not break compatibility with older scripts
514 # still using "ppc" instead of "powerpc"
519 #########################################################################
521 #########################################################################
531 #########################################################################
533 #########################################################################
549 #########################################################################
551 #########################################################################
614 davinci_dm355leopard \
619 #########################################################################
621 #########################################################################
627 #########################################################################
629 #########################################################################
645 #########################################################################
646 ## ARM Cortex-A8 Systems
647 #########################################################################
648 LIST_ARM_CORTEX_A8=" \
663 #########################################################################
665 #########################################################################
698 #########################################################################
700 #########################################################################
731 #########################################################################
733 #########################################################################
741 ${LIST_ARM_CORTEX_A8} \
747 #########################################################################
748 ## MIPS Systems (default = big endian)
749 #########################################################################
756 vct_platinum_onenand \
757 vct_platinum_onenand_small \
759 vct_platinumavc_small \
760 vct_platinumavc_onenand \
761 vct_platinumavc_onenand_small \
764 vct_premium_onenand \
765 vct_premium_onenand_small \
787 #########################################################################
788 ## MIPS Systems (little endian)
789 #########################################################################
806 #########################################################################
808 #########################################################################
821 #########################################################################
823 #########################################################################
834 #########################################################################
835 ## MicroBlaze Systems
836 #########################################################################
842 #########################################################################
844 #########################################################################
850 EB+MCF-EV123_internal \
872 #########################################################################
874 #########################################################################
887 #########################################################################
889 #########################################################################
919 #########################################################################
921 #########################################################################
949 #########################################################################
951 #########################################################################
953 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
955 #-----------------------------------------------------------------------
957 #----- for now, just run PowerPC by default -----
958 [ $# = 0 ] && set $LIST_powerpc
960 #-----------------------------------------------------------------------
965 ${MAKE} distclean >/dev/null
966 ${MAKE} ${target}_config
968 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
969 | tee ${LOG_DIR}/$target.ERR
971 # Check for 'make' errors
972 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
976 if [ -s ${LOG_DIR}/$target.ERR ] ; then
977 ERR_CNT=$((ERR_CNT + 1))
978 ERR_LIST="${ERR_LIST} $target"
980 rm ${LOG_DIR}/$target.ERR
983 TOTAL_CNT=$((TOTAL_CNT + 1))
985 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
986 | tee -a ${LOG_DIR}/$target.MAKELOG
989 #-----------------------------------------------------------------------
993 echo "--------------------- SUMMARY ----------------------------"
994 echo "Boards compiled: ${TOTAL_CNT}"
995 if [ ${ERR_CNT} -gt 0 ] ; then
996 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
998 echo "----------------------------------------------------------"
1003 #-----------------------------------------------------------------------
1007 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
1014 |ppc|powerpc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
1019 for target in `eval echo '$LIST_'${arg}`
1021 build_target ${target}
1024 *) build_target ${arg}