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 #########################################################################
75 #########################################################################
77 #########################################################################
83 #########################################################################
85 #########################################################################
164 #########################################################################
166 #########################################################################
256 xilinx-ppc440-generic \
257 xilinx-ppc440-generic_flash \
265 #########################################################################
267 #########################################################################
274 #########################################################################
276 #########################################################################
300 #########################################################################
301 ## MPC8260 Systems (includes 8250, 8255 etc.)
302 #########################################################################
336 #########################################################################
337 ## MPC83xx Systems (includes 8349, etc.)
338 #########################################################################
343 MPC8313ERDB_NAND_66 \
364 #########################################################################
365 ## MPC85xx Systems (includes 8540, 8560 etc.)
366 #########################################################################
400 #########################################################################
402 #########################################################################
410 #########################################################################
412 #########################################################################
434 #########################################################################
436 #########################################################################
460 #########################################################################
462 #########################################################################
472 #########################################################################
474 #########################################################################
490 #########################################################################
492 #########################################################################
531 #########################################################################
533 #########################################################################
539 #########################################################################
541 #########################################################################
553 #########################################################################
554 ## ARM Cortex-A8 Systems
555 #########################################################################
556 LIST_ARM_CORTEX_A8=" \
564 #########################################################################
566 #########################################################################
583 #########################################################################
585 #########################################################################
614 #########################################################################
616 #########################################################################
624 ${LIST_ARM_CORTEX_A8} \
630 #########################################################################
631 ## MIPS Systems (default = big endian)
632 #########################################################################
639 vct_platinum_onenand \
640 vct_platinum_onenand_small \
642 vct_platinumavc_small \
643 vct_platinumavc_onenand \
644 vct_platinumavc_onenand_small \
647 vct_premium_onenand \
648 vct_premium_onenand_small \
670 #########################################################################
671 ## MIPS Systems (little endian)
672 #########################################################################
689 #########################################################################
691 #########################################################################
704 #########################################################################
706 #########################################################################
711 ADNPESC1_DNPEVA2_base_32\
719 #########################################################################
721 #########################################################################
731 #########################################################################
732 ## MicroBlaze Systems
733 #########################################################################
740 #########################################################################
742 #########################################################################
747 EB+MCF-EV123_internal \
768 #########################################################################
770 #########################################################################
783 #########################################################################
785 #########################################################################
794 #########################################################################
796 #########################################################################
823 #########################################################################
825 #########################################################################
827 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
829 #-----------------------------------------------------------------------
831 #----- for now, just run PPC by default -----
832 [ $# = 0 ] && set $LIST_ppc
834 #-----------------------------------------------------------------------
839 ${MAKE} distclean >/dev/null
840 ${MAKE} ${target}_config
842 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
843 | tee ${LOG_DIR}/$target.ERR
845 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
846 | tee -a ${LOG_DIR}/$target.MAKELOG
849 #-----------------------------------------------------------------------
855 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
862 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
867 for target in `eval echo '$LIST_'${arg}`
869 build_target ${target}
872 *) build_target ${arg}