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 #########################################################################
74 #########################################################################
76 #########################################################################
82 #########################################################################
84 #########################################################################
162 #########################################################################
164 #########################################################################
253 xilinx-ppc440-generic \
254 xilinx-ppc440-generic_flash \
262 #########################################################################
264 #########################################################################
271 #########################################################################
273 #########################################################################
297 #########################################################################
298 ## MPC8260 Systems (includes 8250, 8255 etc.)
299 #########################################################################
333 #########################################################################
334 ## MPC83xx Systems (includes 8349, etc.)
335 #########################################################################
340 MPC8313ERDB_NAND_66 \
361 #########################################################################
362 ## MPC85xx Systems (includes 8540, 8560 etc.)
363 #########################################################################
395 #########################################################################
397 #########################################################################
405 #########################################################################
407 #########################################################################
429 #########################################################################
431 #########################################################################
455 #########################################################################
457 #########################################################################
467 #########################################################################
469 #########################################################################
485 #########################################################################
487 #########################################################################
526 #########################################################################
528 #########################################################################
534 #########################################################################
536 #########################################################################
547 #########################################################################
548 ## ARM Cortex-A8 Systems
549 #########################################################################
550 LIST_ARM_CORTEX_A8=" \
556 #########################################################################
558 #########################################################################
575 #########################################################################
577 #########################################################################
606 #########################################################################
608 #########################################################################
616 ${LIST_ARM_CORTEX_A8} \
622 #########################################################################
623 ## MIPS Systems (default = big endian)
624 #########################################################################
650 #########################################################################
651 ## MIPS Systems (little endian)
652 #########################################################################
669 #########################################################################
671 #########################################################################
684 #########################################################################
686 #########################################################################
691 ADNPESC1_DNPEVA2_base_32\
699 #########################################################################
701 #########################################################################
711 #########################################################################
712 ## MicroBlaze Systems
713 #########################################################################
720 #########################################################################
722 #########################################################################
727 EB+MCF-EV123_internal \
748 #########################################################################
750 #########################################################################
763 #########################################################################
765 #########################################################################
774 #########################################################################
776 #########################################################################
803 #########################################################################
805 #########################################################################
807 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
809 #-----------------------------------------------------------------------
811 #----- for now, just run PPC by default -----
812 [ $# = 0 ] && set $LIST_ppc
814 #-----------------------------------------------------------------------
819 ${MAKE} distclean >/dev/null
820 ${MAKE} ${target}_config
822 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
823 | tee ${LOG_DIR}/$target.ERR
825 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
826 | tee -a ${LOG_DIR}/$target.MAKELOG
829 #-----------------------------------------------------------------------
835 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
842 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
847 for target in `eval echo '$LIST_'${arg}`
849 build_target ${target}
852 *) build_target ${arg}