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 #########################################################################
88 #########################################################################
90 #########################################################################
98 #########################################################################
100 #########################################################################
179 #########################################################################
181 #########################################################################
274 xilinx-ppc440-generic \
275 xilinx-ppc440-generic_flash \
283 #########################################################################
285 #########################################################################
292 #########################################################################
294 #########################################################################
318 #########################################################################
319 ## MPC8260 Systems (includes 8250, 8255 etc.)
320 #########################################################################
354 #########################################################################
355 ## MPC83xx Systems (includes 8349, etc.)
356 #########################################################################
362 MPC8313ERDB_NAND_66 \
385 #########################################################################
386 ## MPC85xx Systems (includes 8540, 8560 etc.)
387 #########################################################################
432 sbc8548_PCI_33_PCIE \
433 sbc8548_PCI_66_PCIE \
449 #########################################################################
451 #########################################################################
460 #########################################################################
462 #########################################################################
484 #########################################################################
486 #########################################################################
510 #########################################################################
512 #########################################################################
522 #########################################################################
524 #########################################################################
540 #########################################################################
542 #########################################################################
601 davinci_dm355leopard \
606 #########################################################################
608 #########################################################################
614 #########################################################################
616 #########################################################################
631 #########################################################################
632 ## ARM Cortex-A8 Systems
633 #########################################################################
634 LIST_ARM_CORTEX_A8=" \
647 #########################################################################
649 #########################################################################
681 #########################################################################
683 #########################################################################
714 #########################################################################
716 #########################################################################
724 ${LIST_ARM_CORTEX_A8} \
730 #########################################################################
731 ## MIPS Systems (default = big endian)
732 #########################################################################
739 vct_platinum_onenand \
740 vct_platinum_onenand_small \
742 vct_platinumavc_small \
743 vct_platinumavc_onenand \
744 vct_platinumavc_onenand_small \
747 vct_premium_onenand \
748 vct_premium_onenand_small \
770 #########################################################################
771 ## MIPS Systems (little endian)
772 #########################################################################
789 #########################################################################
791 #########################################################################
804 #########################################################################
806 #########################################################################
811 ADNPESC1_DNPEVA2_base_32\
819 #########################################################################
821 #########################################################################
831 #########################################################################
832 ## MicroBlaze Systems
833 #########################################################################
839 #########################################################################
841 #########################################################################
846 EB+MCF-EV123_internal \
868 #########################################################################
870 #########################################################################
883 #########################################################################
885 #########################################################################
914 #########################################################################
916 #########################################################################
944 #########################################################################
946 #########################################################################
948 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
950 #-----------------------------------------------------------------------
952 #----- for now, just run PPC by default -----
953 [ $# = 0 ] && set $LIST_ppc
955 #-----------------------------------------------------------------------
960 ${MAKE} distclean >/dev/null
961 ${MAKE} ${target}_config
963 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
964 | tee ${LOG_DIR}/$target.ERR
966 # Check for 'make' errors
967 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
971 if [ -s ${LOG_DIR}/$target.ERR ] ; then
972 ERR_CNT=$((ERR_CNT + 1))
973 ERR_LIST="${ERR_LIST} $target"
975 rm ${LOG_DIR}/$target.ERR
978 TOTAL_CNT=$((TOTAL_CNT + 1))
980 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
981 | tee -a ${LOG_DIR}/$target.MAKELOG
984 #-----------------------------------------------------------------------
988 echo "--------------------- SUMMARY ----------------------------"
989 echo "Boards compiled: ${TOTAL_CNT}"
990 if [ ${ERR_CNT} -gt 0 ] ; then
991 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
993 echo "----------------------------------------------------------"
998 #-----------------------------------------------------------------------
1002 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
1009 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
1014 for target in `eval echo '$LIST_'${arg}`
1016 build_target ${target}
1019 *) build_target ${arg}