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 #########################################################################
583 davinci_dm355leopard \
587 #########################################################################
589 #########################################################################
595 #########################################################################
597 #########################################################################
612 #########################################################################
613 ## ARM Cortex-A8 Systems
614 #########################################################################
615 LIST_ARM_CORTEX_A8=" \
627 #########################################################################
629 #########################################################################
659 #########################################################################
661 #########################################################################
692 #########################################################################
694 #########################################################################
702 ${LIST_ARM_CORTEX_A8} \
708 #########################################################################
709 ## MIPS Systems (default = big endian)
710 #########################################################################
717 vct_platinum_onenand \
718 vct_platinum_onenand_small \
720 vct_platinumavc_small \
721 vct_platinumavc_onenand \
722 vct_platinumavc_onenand_small \
725 vct_premium_onenand \
726 vct_premium_onenand_small \
748 #########################################################################
749 ## MIPS Systems (little endian)
750 #########################################################################
767 #########################################################################
769 #########################################################################
782 #########################################################################
784 #########################################################################
789 ADNPESC1_DNPEVA2_base_32\
797 #########################################################################
799 #########################################################################
809 #########################################################################
810 ## MicroBlaze Systems
811 #########################################################################
817 #########################################################################
819 #########################################################################
824 EB+MCF-EV123_internal \
846 #########################################################################
848 #########################################################################
861 #########################################################################
863 #########################################################################
889 #########################################################################
891 #########################################################################
919 #########################################################################
921 #########################################################################
923 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
925 #-----------------------------------------------------------------------
927 #----- for now, just run PPC by default -----
928 [ $# = 0 ] && set $LIST_ppc
930 #-----------------------------------------------------------------------
935 ${MAKE} distclean >/dev/null
936 ${MAKE} ${target}_config
938 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
939 | tee ${LOG_DIR}/$target.ERR
940 if [ -s ${LOG_DIR}/$target.ERR ] ; then
941 ERR_CNT=$((ERR_CNT + 1))
942 ERR_LIST="${ERR_LIST} $target"
944 rm ${LOG_DIR}/$target.ERR
947 TOTAL_CNT=$((TOTAL_CNT + 1))
949 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
950 | tee -a ${LOG_DIR}/$target.MAKELOG
953 #-----------------------------------------------------------------------
957 echo "--------------------- SUMMARY ----------------------------"
958 echo "Boards compiled: ${TOTAL_CNT}"
959 if [ ${ERR_CNT} -gt 0 ] ; then
960 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
962 echo "----------------------------------------------------------"
965 #-----------------------------------------------------------------------
969 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
976 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
981 for target in `eval echo '$LIST_'${arg}`
983 build_target ${target}
986 *) build_target ${arg}