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 #########################################################################
86 #########################################################################
88 #########################################################################
96 #########################################################################
98 #########################################################################
177 #########################################################################
179 #########################################################################
273 xilinx-ppc440-generic \
274 xilinx-ppc440-generic_flash \
282 #########################################################################
284 #########################################################################
291 #########################################################################
293 #########################################################################
318 #########################################################################
319 ## MPC8260 Systems (includes 8250, 8255 etc.)
320 #########################################################################
354 #########################################################################
355 ## MPC83xx Systems (includes 8349, etc.)
356 #########################################################################
361 MPC8313ERDB_NAND_66 \
383 #########################################################################
384 ## MPC85xx Systems (includes 8540, 8560 etc.)
385 #########################################################################
428 sbc8548_PCI_33_PCIE \
429 sbc8548_PCI_66_PCIE \
445 #########################################################################
447 #########################################################################
456 #########################################################################
458 #########################################################################
480 #########################################################################
482 #########################################################################
506 #########################################################################
508 #########################################################################
518 #########################################################################
520 #########################################################################
536 #########################################################################
538 #########################################################################
584 #########################################################################
586 #########################################################################
592 #########################################################################
594 #########################################################################
609 #########################################################################
610 ## ARM Cortex-A8 Systems
611 #########################################################################
612 LIST_ARM_CORTEX_A8
=" \
622 #########################################################################
624 #########################################################################
654 #########################################################################
656 #########################################################################
687 #########################################################################
689 #########################################################################
697 ${LIST_ARM_CORTEX_A8} \
703 #########################################################################
704 ## MIPS Systems (default = big endian)
705 #########################################################################
712 vct_platinum_onenand \
713 vct_platinum_onenand_small \
715 vct_platinumavc_small \
716 vct_platinumavc_onenand \
717 vct_platinumavc_onenand_small \
720 vct_premium_onenand \
721 vct_premium_onenand_small \
743 #########################################################################
744 ## MIPS Systems (little endian)
745 #########################################################################
762 #########################################################################
764 #########################################################################
777 #########################################################################
779 #########################################################################
784 ADNPESC1_DNPEVA2_base_32\
792 #########################################################################
794 #########################################################################
804 #########################################################################
805 ## MicroBlaze Systems
806 #########################################################################
812 #########################################################################
814 #########################################################################
819 EB+MCF-EV123_internal \
841 #########################################################################
843 #########################################################################
856 #########################################################################
858 #########################################################################
884 #########################################################################
886 #########################################################################
914 #########################################################################
916 #########################################################################
918 LIST_sparc
="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
920 #-----------------------------------------------------------------------
922 #----- for now, just run PPC by default -----
923 [ $# = 0 ] && set $LIST_ppc
925 #-----------------------------------------------------------------------
930 ${MAKE} distclean
>/dev
/null
931 ${MAKE} ${target}_config
933 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
934 |
tee ${LOG_DIR}/$target.ERR
935 if [ -s ${LOG_DIR}/$target.ERR
] ; then
936 ERR_CNT
=$
((ERR_CNT
+ 1))
937 ERR_LIST
="${ERR_LIST} $target"
939 rm ${LOG_DIR}/$target.ERR
942 TOTAL_CNT
=$
((TOTAL_CNT
+ 1))
944 ${CROSS_COMPILE}size
${BUILD_DIR}/u-boot \
945 |
tee -a ${LOG_DIR}/$target.MAKELOG
948 #-----------------------------------------------------------------------
952 echo "--------------------- SUMMARY ----------------------------"
953 echo "Boards compiled: ${TOTAL_CNT}"
954 if [ ${ERR_CNT} -gt 0 ] ; then
955 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
957 echo "----------------------------------------------------------"
960 #-----------------------------------------------------------------------
964 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
971 |ppc|
5xx|
5xxx|
512x|
8xx|
8220|
824x|
8260|
83xx|
85xx|
86xx|
4xx|
7xx|
74xx|TSEC \
976 for target
in `eval echo '$LIST_'${arg}`
978 build_target
${target}
981 *) build_target
${arg}