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
43 #########################################################################
45 #########################################################################
51 #########################################################################
53 #########################################################################
87 #########################################################################
89 #########################################################################
97 #########################################################################
99 #########################################################################
178 #########################################################################
180 #########################################################################
274 xilinx-ppc440-generic \
275 xilinx-ppc440-generic_flash \
283 #########################################################################
285 #########################################################################
292 #########################################################################
294 #########################################################################
319 #########################################################################
320 ## MPC8260 Systems (includes 8250, 8255 etc.)
321 #########################################################################
355 #########################################################################
356 ## MPC83xx Systems (includes 8349, etc.)
357 #########################################################################
362 MPC8313ERDB_NAND_66 \
384 #########################################################################
385 ## MPC85xx Systems (includes 8540, 8560 etc.)
386 #########################################################################
429 sbc8548_PCI_33_PCIE \
430 sbc8548_PCI_66_PCIE \
446 #########################################################################
448 #########################################################################
457 #########################################################################
459 #########################################################################
481 #########################################################################
483 #########################################################################
507 #########################################################################
509 #########################################################################
519 #########################################################################
521 #########################################################################
537 #########################################################################
539 #########################################################################
585 davinci_dm355leopard \
589 #########################################################################
591 #########################################################################
597 #########################################################################
599 #########################################################################
614 #########################################################################
615 ## ARM Cortex-A8 Systems
616 #########################################################################
617 LIST_ARM_CORTEX_A8=" \
629 #########################################################################
631 #########################################################################
661 #########################################################################
663 #########################################################################
694 #########################################################################
696 #########################################################################
704 ${LIST_ARM_CORTEX_A8} \
710 #########################################################################
711 ## MIPS Systems (default = big endian)
712 #########################################################################
719 vct_platinum_onenand \
720 vct_platinum_onenand_small \
722 vct_platinumavc_small \
723 vct_platinumavc_onenand \
724 vct_platinumavc_onenand_small \
727 vct_premium_onenand \
728 vct_premium_onenand_small \
750 #########################################################################
751 ## MIPS Systems (little endian)
752 #########################################################################
769 #########################################################################
771 #########################################################################
784 #########################################################################
786 #########################################################################
791 ADNPESC1_DNPEVA2_base_32\
799 #########################################################################
801 #########################################################################
811 #########################################################################
812 ## MicroBlaze Systems
813 #########################################################################
819 #########################################################################
821 #########################################################################
826 EB+MCF-EV123_internal \
848 #########################################################################
850 #########################################################################
863 #########################################################################
865 #########################################################################
891 #########################################################################
893 #########################################################################
921 #########################################################################
923 #########################################################################
925 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
927 #-----------------------------------------------------------------------
929 #----- for now, just run PPC by default -----
930 [ $# = 0 ] && set $LIST_ppc
932 #-----------------------------------------------------------------------
937 ${MAKE} distclean >/dev/null
938 ${MAKE} ${target}_config
940 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
941 | tee ${LOG_DIR}/$target.ERR
942 if [ -s ${LOG_DIR}/$target.ERR ] ; then
943 ERR_CNT=$((ERR_CNT + 1))
944 ERR_LIST="${ERR_LIST} $target"
946 rm ${LOG_DIR}/$target.ERR
949 TOTAL_CNT=$((TOTAL_CNT + 1))
951 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
952 | tee -a ${LOG_DIR}/$target.MAKELOG
955 #-----------------------------------------------------------------------
959 echo "--------------------- SUMMARY ----------------------------"
960 echo "Boards compiled: ${TOTAL_CNT}"
961 if [ ${ERR_CNT} -gt 0 ] ; then
962 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
964 echo "----------------------------------------------------------"
967 #-----------------------------------------------------------------------
971 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
978 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
983 for target in `eval echo '$LIST_'${arg}`
985 build_target ${target}
988 *) build_target ${arg}