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 #########################################################################
416 sbc8548_PCI_33_PCIE \
417 sbc8548_PCI_66_PCIE \
433 #########################################################################
435 #########################################################################
444 #########################################################################
446 #########################################################################
468 #########################################################################
470 #########################################################################
494 #########################################################################
496 #########################################################################
506 #########################################################################
508 #########################################################################
524 #########################################################################
526 #########################################################################
573 #########################################################################
575 #########################################################################
581 #########################################################################
583 #########################################################################
598 #########################################################################
599 ## ARM Cortex-A8 Systems
600 #########################################################################
601 LIST_ARM_CORTEX_A8=" \
612 #########################################################################
614 #########################################################################
644 #########################################################################
646 #########################################################################
677 #########################################################################
679 #########################################################################
687 ${LIST_ARM_CORTEX_A8} \
693 #########################################################################
694 ## MIPS Systems (default = big endian)
695 #########################################################################
702 vct_platinum_onenand \
703 vct_platinum_onenand_small \
705 vct_platinumavc_small \
706 vct_platinumavc_onenand \
707 vct_platinumavc_onenand_small \
710 vct_premium_onenand \
711 vct_premium_onenand_small \
733 #########################################################################
734 ## MIPS Systems (little endian)
735 #########################################################################
752 #########################################################################
754 #########################################################################
767 #########################################################################
769 #########################################################################
774 ADNPESC1_DNPEVA2_base_32\
782 #########################################################################
784 #########################################################################
794 #########################################################################
795 ## MicroBlaze Systems
796 #########################################################################
802 #########################################################################
804 #########################################################################
809 EB+MCF-EV123_internal \
831 #########################################################################
833 #########################################################################
846 #########################################################################
848 #########################################################################
874 #########################################################################
876 #########################################################################
904 #########################################################################
906 #########################################################################
908 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
910 #-----------------------------------------------------------------------
912 #----- for now, just run PPC by default -----
913 [ $# = 0 ] && set $LIST_ppc
915 #-----------------------------------------------------------------------
920 ${MAKE} distclean >/dev/null
921 ${MAKE} ${target}_config
923 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
924 | tee ${LOG_DIR}/$target.ERR
925 if [ -s ${LOG_DIR}/$target.ERR ] ; then
926 ERR_CNT=$((ERR_CNT + 1))
927 ERR_LIST="${ERR_LIST} $target"
929 rm ${LOG_DIR}/$target.ERR
932 TOTAL_CNT=$((TOTAL_CNT + 1))
934 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
935 | tee -a ${LOG_DIR}/$target.MAKELOG
938 #-----------------------------------------------------------------------
942 echo "--------------------- SUMMARY ----------------------------"
943 echo "Boards compiled: ${TOTAL_CNT}"
944 if [ ${ERR_CNT} -gt 0 ] ; then
945 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
947 echo "----------------------------------------------------------"
950 #-----------------------------------------------------------------------
954 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
961 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
966 for target in `eval echo '$LIST_'${arg}`
968 build_target ${target}
971 *) build_target ${arg}