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 #########################################################################
86 #########################################################################
88 #########################################################################
96 #########################################################################
98 #########################################################################
177 #########################################################################
179 #########################################################################
271 xilinx-ppc440-generic \
272 xilinx-ppc440-generic_flash \
280 #########################################################################
282 #########################################################################
289 #########################################################################
291 #########################################################################
315 #########################################################################
316 ## MPC8260 Systems (includes 8250, 8255 etc.)
317 #########################################################################
351 #########################################################################
352 ## MPC83xx Systems (includes 8349, etc.)
353 #########################################################################
359 MPC8313ERDB_NAND_66 \
382 #########################################################################
383 ## MPC85xx Systems (includes 8540, 8560 etc.)
384 #########################################################################
429 sbc8548_PCI_33_PCIE \
430 sbc8548_PCI_66_PCIE \
446 #########################################################################
448 #########################################################################
457 #########################################################################
459 #########################################################################
481 #########################################################################
483 #########################################################################
507 #########################################################################
509 #########################################################################
519 #########################################################################
521 #########################################################################
537 #########################################################################
539 #########################################################################
598 davinci_dm355leopard \
603 #########################################################################
605 #########################################################################
611 #########################################################################
613 #########################################################################
628 #########################################################################
629 ## ARM Cortex-A8 Systems
630 #########################################################################
631 LIST_ARM_CORTEX_A8=" \
644 #########################################################################
646 #########################################################################
678 #########################################################################
680 #########################################################################
711 #########################################################################
713 #########################################################################
721 ${LIST_ARM_CORTEX_A8} \
727 #########################################################################
728 ## MIPS Systems (default = big endian)
729 #########################################################################
736 vct_platinum_onenand \
737 vct_platinum_onenand_small \
739 vct_platinumavc_small \
740 vct_platinumavc_onenand \
741 vct_platinumavc_onenand_small \
744 vct_premium_onenand \
745 vct_premium_onenand_small \
767 #########################################################################
768 ## MIPS Systems (little endian)
769 #########################################################################
786 #########################################################################
788 #########################################################################
801 #########################################################################
803 #########################################################################
808 ADNPESC1_DNPEVA2_base_32\
816 #########################################################################
818 #########################################################################
828 #########################################################################
829 ## MicroBlaze Systems
830 #########################################################################
836 #########################################################################
838 #########################################################################
844 EB+MCF-EV123_internal \
866 #########################################################################
868 #########################################################################
881 #########################################################################
883 #########################################################################
912 #########################################################################
914 #########################################################################
942 #########################################################################
944 #########################################################################
946 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
948 #-----------------------------------------------------------------------
950 #----- for now, just run PPC by default -----
951 [ $# = 0 ] && set $LIST_ppc
953 #-----------------------------------------------------------------------
958 ${MAKE} distclean >/dev/null
959 ${MAKE} ${target}_config
961 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
962 | tee ${LOG_DIR}/$target.ERR
964 # Check for 'make' errors
965 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
969 if [ -s ${LOG_DIR}/$target.ERR ] ; then
970 ERR_CNT=$((ERR_CNT + 1))
971 ERR_LIST="${ERR_LIST} $target"
973 rm ${LOG_DIR}/$target.ERR
976 TOTAL_CNT=$((TOTAL_CNT + 1))
978 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
979 | tee -a ${LOG_DIR}/$target.MAKELOG
982 #-----------------------------------------------------------------------
986 echo "--------------------- SUMMARY ----------------------------"
987 echo "Boards compiled: ${TOTAL_CNT}"
988 if [ ${ERR_CNT} -gt 0 ] ; then
989 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
991 echo "----------------------------------------------------------"
996 #-----------------------------------------------------------------------
1000 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
1007 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
1012 for target in `eval echo '$LIST_'${arg}`
1014 build_target ${target}
1017 *) build_target ${arg}