3 # Determine number of CPU cores if no default was set
4 : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
6 if [ "$BUILD_NCPUS" -gt 1 ]
8 JOBS=-j`expr "$BUILD_NCPUS" + 1`
14 if [ "${CROSS_COMPILE}" ] ; then
15 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
20 if [ "${MAKEALL_LOGDIR}" ] ; then
21 LOG_DIR=${MAKEALL_LOGDIR}
26 if [ ! "${BUILD_DIR}" ] ; then
30 [ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
34 #########################################################################
36 #########################################################################
42 #########################################################################
44 #########################################################################
77 #########################################################################
79 #########################################################################
87 #########################################################################
89 #########################################################################
168 #########################################################################
170 #########################################################################
264 xilinx-ppc440-generic \
265 xilinx-ppc440-generic_flash \
273 #########################################################################
275 #########################################################################
282 #########################################################################
284 #########################################################################
309 #########################################################################
310 ## MPC8260 Systems (includes 8250, 8255 etc.)
311 #########################################################################
345 #########################################################################
346 ## MPC83xx Systems (includes 8349, etc.)
347 #########################################################################
352 MPC8313ERDB_NAND_66 \
374 #########################################################################
375 ## MPC85xx Systems (includes 8540, 8560 etc.)
376 #########################################################################
417 #########################################################################
419 #########################################################################
428 #########################################################################
430 #########################################################################
452 #########################################################################
454 #########################################################################
478 #########################################################################
480 #########################################################################
490 #########################################################################
492 #########################################################################
508 #########################################################################
510 #########################################################################
555 #########################################################################
557 #########################################################################
563 #########################################################################
565 #########################################################################
580 #########################################################################
581 ## ARM Cortex-A8 Systems
582 #########################################################################
583 LIST_ARM_CORTEX_A8=" \
593 #########################################################################
595 #########################################################################
622 #########################################################################
624 #########################################################################
655 #########################################################################
657 #########################################################################
665 ${LIST_ARM_CORTEX_A8} \
671 #########################################################################
672 ## MIPS Systems (default = big endian)
673 #########################################################################
680 vct_platinum_onenand \
681 vct_platinum_onenand_small \
683 vct_platinumavc_small \
684 vct_platinumavc_onenand \
685 vct_platinumavc_onenand_small \
688 vct_premium_onenand \
689 vct_premium_onenand_small \
711 #########################################################################
712 ## MIPS Systems (little endian)
713 #########################################################################
730 #########################################################################
732 #########################################################################
745 #########################################################################
747 #########################################################################
752 ADNPESC1_DNPEVA2_base_32\
760 #########################################################################
762 #########################################################################
772 #########################################################################
773 ## MicroBlaze Systems
774 #########################################################################
780 #########################################################################
782 #########################################################################
787 EB+MCF-EV123_internal \
809 #########################################################################
811 #########################################################################
824 #########################################################################
826 #########################################################################
852 #########################################################################
854 #########################################################################
882 #########################################################################
884 #########################################################################
886 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
888 #-----------------------------------------------------------------------
890 #----- for now, just run PPC by default -----
891 [ $# = 0 ] && set $LIST_ppc
893 #-----------------------------------------------------------------------
898 ${MAKE} distclean >/dev/null
899 ${MAKE} ${target}_config
901 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
902 | tee ${LOG_DIR}/$target.ERR
904 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
905 | tee -a ${LOG_DIR}/$target.MAKELOG
908 #-----------------------------------------------------------------------
914 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
921 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
926 for target in `eval echo '$LIST_'${arg}`
928 build_target ${target}
931 *) build_target ${arg}