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 #########################################################################
87 #########################################################################
89 #########################################################################
98 #########################################################################
100 #########################################################################
179 #########################################################################
181 #########################################################################
276 xilinx-ppc440-generic \
277 xilinx-ppc440-generic_flash \
285 #########################################################################
287 #########################################################################
294 #########################################################################
296 #########################################################################
320 #########################################################################
321 ## MPC8260 Systems (includes 8250, 8255 etc.)
322 #########################################################################
356 #########################################################################
357 ## MPC83xx Systems (includes 8349, etc.)
358 #########################################################################
365 MPC8313ERDB_NAND_66 \
389 #########################################################################
390 ## MPC85xx Systems (includes 8540, 8560 etc.)
391 #########################################################################
437 sbc8548_PCI_33_PCIE \
438 sbc8548_PCI_66_PCIE \
454 #########################################################################
456 #########################################################################
466 #########################################################################
468 #########################################################################
490 #########################################################################
492 #########################################################################
516 # Alias "ppc" -> "powerpc" to not break compatibility with older scripts
517 # still using "ppc" instead of "powerpc"
522 #########################################################################
524 #########################################################################
534 #########################################################################
536 #########################################################################
552 #########################################################################
554 #########################################################################
617 davinci_dm355leopard \
622 #########################################################################
624 #########################################################################
630 #########################################################################
632 #########################################################################
648 #########################################################################
650 #########################################################################
668 #########################################################################
670 #########################################################################
703 #########################################################################
705 #########################################################################
740 #########################################################################
742 #########################################################################
756 #########################################################################
757 ## MIPS Systems (default = big endian)
758 #########################################################################
765 vct_platinum_onenand \
766 vct_platinum_onenand_small \
768 vct_platinumavc_small \
769 vct_platinumavc_onenand \
770 vct_platinumavc_onenand_small \
773 vct_premium_onenand \
774 vct_premium_onenand_small \
796 #########################################################################
797 ## MIPS Systems (little endian)
798 #########################################################################
815 #########################################################################
817 #########################################################################
830 #########################################################################
832 #########################################################################
840 #########################################################################
841 ## MicroBlaze Systems
842 #########################################################################
848 #########################################################################
850 #########################################################################
856 EB+MCF-EV123_internal \
878 #########################################################################
880 #########################################################################
893 #########################################################################
895 #########################################################################
926 #########################################################################
928 #########################################################################
956 #########################################################################
958 #########################################################################
960 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
962 #-----------------------------------------------------------------------
964 #----- for now, just run PowerPC by default -----
965 [ $# = 0 ] && set $LIST_powerpc
967 #-----------------------------------------------------------------------
972 ${MAKE} distclean >/dev/null
973 ${MAKE} ${target}_config
975 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
976 | tee ${LOG_DIR}/$target.ERR
978 # Check for 'make' errors
979 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
983 if [ -s ${LOG_DIR}/$target.ERR ] ; then
984 ERR_CNT=$((ERR_CNT + 1))
985 ERR_LIST="${ERR_LIST} $target"
987 rm ${LOG_DIR}/$target.ERR
990 TOTAL_CNT=$((TOTAL_CNT + 1))
992 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
993 | tee -a ${LOG_DIR}/$target.MAKELOG
996 #-----------------------------------------------------------------------
1000 echo "--------------------- SUMMARY ----------------------------"
1001 echo "Boards compiled: ${TOTAL_CNT}"
1002 if [ ${ERR_CNT} -gt 0 ] ; then
1003 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
1005 echo "----------------------------------------------------------"
1010 #-----------------------------------------------------------------------
1014 arm|SA|ARM7|ARM9|ARM10|ARM11|ARMV7|at91|ixp|pxa \
1021 |ppc|powerpc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
1026 for target in `eval echo '$LIST_'${arg}`
1028 build_target ${target}
1031 *) build_target ${arg}