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 #########################################################################
319 #########################################################################
320 ## MPC8260 Systems (includes 8250, 8255 etc.)
321 #########################################################################
355 #########################################################################
356 ## MPC83xx Systems (includes 8349, etc.)
357 #########################################################################
363 MPC8313ERDB_NAND_66 \
386 #########################################################################
387 ## MPC85xx Systems (includes 8540, 8560 etc.)
388 #########################################################################
433 sbc8548_PCI_33_PCIE \
434 sbc8548_PCI_66_PCIE \
450 #########################################################################
452 #########################################################################
461 #########################################################################
463 #########################################################################
485 #########################################################################
487 #########################################################################
511 #########################################################################
513 #########################################################################
523 #########################################################################
525 #########################################################################
541 #########################################################################
543 #########################################################################
602 davinci_dm355leopard \
607 #########################################################################
609 #########################################################################
615 #########################################################################
617 #########################################################################
632 #########################################################################
633 ## ARM Cortex-A8 Systems
634 #########################################################################
635 LIST_ARM_CORTEX_A8=" \
648 #########################################################################
650 #########################################################################
682 #########################################################################
684 #########################################################################
715 #########################################################################
717 #########################################################################
725 ${LIST_ARM_CORTEX_A8} \
731 #########################################################################
732 ## MIPS Systems (default = big endian)
733 #########################################################################
740 vct_platinum_onenand \
741 vct_platinum_onenand_small \
743 vct_platinumavc_small \
744 vct_platinumavc_onenand \
745 vct_platinumavc_onenand_small \
748 vct_premium_onenand \
749 vct_premium_onenand_small \
771 #########################################################################
772 ## MIPS Systems (little endian)
773 #########################################################################
790 #########################################################################
792 #########################################################################
805 #########################################################################
807 #########################################################################
812 ADNPESC1_DNPEVA2_base_32\
820 #########################################################################
822 #########################################################################
832 #########################################################################
833 ## MicroBlaze Systems
834 #########################################################################
840 #########################################################################
842 #########################################################################
847 EB+MCF-EV123_internal \
869 #########################################################################
871 #########################################################################
884 #########################################################################
886 #########################################################################
915 #########################################################################
917 #########################################################################
945 #########################################################################
947 #########################################################################
949 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
951 #-----------------------------------------------------------------------
953 #----- for now, just run PPC by default -----
954 [ $# = 0 ] && set $LIST_ppc
956 #-----------------------------------------------------------------------
961 ${MAKE} distclean >/dev/null
962 ${MAKE} ${target}_config
964 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
965 | tee ${LOG_DIR}/$target.ERR
967 # Check for 'make' errors
968 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
972 if [ -s ${LOG_DIR}/$target.ERR ] ; then
973 ERR_CNT=$((ERR_CNT + 1))
974 ERR_LIST="${ERR_LIST} $target"
976 rm ${LOG_DIR}/$target.ERR
979 TOTAL_CNT=$((TOTAL_CNT + 1))
981 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
982 | tee -a ${LOG_DIR}/$target.MAKELOG
985 #-----------------------------------------------------------------------
989 echo "--------------------- SUMMARY ----------------------------"
990 echo "Boards compiled: ${TOTAL_CNT}"
991 if [ ${ERR_CNT} -gt 0 ] ; then
992 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
994 echo "----------------------------------------------------------"
999 #-----------------------------------------------------------------------
1003 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
1010 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
1015 for target in `eval echo '$LIST_'${arg}`
1017 build_target ${target}
1020 *) build_target ${arg}