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 #########################################################################
178 #########################################################################
180 #########################################################################
275 xilinx-ppc440-generic \
276 xilinx-ppc440-generic_flash \
284 #########################################################################
286 #########################################################################
293 #########################################################################
295 #########################################################################
319 #########################################################################
320 ## MPC8260 Systems (includes 8250, 8255 etc.)
321 #########################################################################
355 #########################################################################
356 ## MPC83xx Systems (includes 8349, etc.)
357 #########################################################################
364 MPC8313ERDB_NAND_66 \
388 #########################################################################
389 ## MPC85xx Systems (includes 8540, 8560 etc.)
390 #########################################################################
438 sbc8548_PCI_33_PCIE \
439 sbc8548_PCI_66_PCIE \
455 #########################################################################
457 #########################################################################
467 #########################################################################
469 #########################################################################
491 #########################################################################
493 #########################################################################
517 # Alias "ppc" -> "powerpc" to not break compatibility with older scripts
518 # still using "ppc" instead of "powerpc"
523 #########################################################################
525 #########################################################################
535 #########################################################################
537 #########################################################################
553 #########################################################################
555 #########################################################################
619 davinci_dm355leopard \
624 #########################################################################
626 #########################################################################
632 #########################################################################
634 #########################################################################
650 #########################################################################
652 #########################################################################
670 #########################################################################
672 #########################################################################
705 #########################################################################
707 #########################################################################
742 #########################################################################
744 #########################################################################
758 #########################################################################
759 ## MIPS Systems (default = big endian)
760 #########################################################################
767 vct_platinum_onenand \
768 vct_platinum_onenand_small \
770 vct_platinumavc_small \
771 vct_platinumavc_onenand \
772 vct_platinumavc_onenand_small \
775 vct_premium_onenand \
776 vct_premium_onenand_small \
798 #########################################################################
799 ## MIPS Systems (little endian)
800 #########################################################################
817 #########################################################################
819 #########################################################################
829 #########################################################################
831 #########################################################################
839 #########################################################################
840 ## MicroBlaze Systems
841 #########################################################################
847 #########################################################################
849 #########################################################################
855 EB+MCF-EV123_internal \
877 #########################################################################
879 #########################################################################
892 #########################################################################
894 #########################################################################
925 #########################################################################
927 #########################################################################
955 #########################################################################
957 #########################################################################
959 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
961 #-----------------------------------------------------------------------
963 #----- for now, just run PowerPC by default -----
964 [ $# = 0 ] && set $LIST_powerpc
966 #-----------------------------------------------------------------------
971 ${MAKE} distclean >/dev/null
972 ${MAKE} ${target}_config
974 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
975 | tee ${LOG_DIR}/$target.ERR
977 # Check for 'make' errors
978 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
982 if [ -s ${LOG_DIR}/$target.ERR ] ; then
983 ERR_CNT=$((ERR_CNT + 1))
984 ERR_LIST="${ERR_LIST} $target"
986 rm ${LOG_DIR}/$target.ERR
989 TOTAL_CNT=$((TOTAL_CNT + 1))
991 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
992 | tee -a ${LOG_DIR}/$target.MAKELOG
995 #-----------------------------------------------------------------------
999 echo "--------------------- SUMMARY ----------------------------"
1000 echo "Boards compiled: ${TOTAL_CNT}"
1001 if [ ${ERR_CNT} -gt 0 ] ; then
1002 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
1004 echo "----------------------------------------------------------"
1009 #-----------------------------------------------------------------------
1013 arm|SA|ARM7|ARM9|ARM10|ARM11|ARMV7|at91|ixp|pxa \
1020 |ppc|powerpc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
1025 for target in `eval echo '$LIST_'${arg}`
1027 build_target ${target}
1030 *) build_target ${arg}