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 #########################################################################
254 xilinx-ppc440-generic \
255 xilinx-ppc440-generic_flash \
263 #########################################################################
265 #########################################################################
272 #########################################################################
274 #########################################################################
298 #########################################################################
299 ## MPC8260 Systems (includes 8250, 8255 etc.)
300 #########################################################################
334 #########################################################################
335 ## MPC83xx Systems (includes 8349, etc.)
336 #########################################################################
341 MPC8313ERDB_NAND_66 \
362 #########################################################################
363 ## MPC85xx Systems (includes 8540, 8560 etc.)
364 #########################################################################
397 #########################################################################
399 #########################################################################
407 #########################################################################
409 #########################################################################
431 #########################################################################
433 #########################################################################
457 #########################################################################
459 #########################################################################
469 #########################################################################
471 #########################################################################
487 #########################################################################
489 #########################################################################
528 #########################################################################
530 #########################################################################
536 #########################################################################
538 #########################################################################
549 #########################################################################
550 ## ARM Cortex-A8 Systems
551 #########################################################################
552 LIST_ARM_CORTEX_A8=" \
560 #########################################################################
562 #########################################################################
579 #########################################################################
581 #########################################################################
610 #########################################################################
612 #########################################################################
620 ${LIST_ARM_CORTEX_A8} \
626 #########################################################################
627 ## MIPS Systems (default = big endian)
628 #########################################################################
635 vct_platinum_onenand \
636 vct_platinum_onenand_small \
638 vct_platinumavc_small \
639 vct_platinumavc_onenand \
640 vct_platinumavc_onenand_small \
643 vct_premium_onenand \
644 vct_premium_onenand_small \
666 #########################################################################
667 ## MIPS Systems (little endian)
668 #########################################################################
685 #########################################################################
687 #########################################################################
700 #########################################################################
702 #########################################################################
707 ADNPESC1_DNPEVA2_base_32\
715 #########################################################################
717 #########################################################################
727 #########################################################################
728 ## MicroBlaze Systems
729 #########################################################################
736 #########################################################################
738 #########################################################################
743 EB+MCF-EV123_internal \
764 #########################################################################
766 #########################################################################
779 #########################################################################
781 #########################################################################
790 #########################################################################
792 #########################################################################
819 #########################################################################
821 #########################################################################
823 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
825 #-----------------------------------------------------------------------
827 #----- for now, just run PPC by default -----
828 [ $# = 0 ] && set $LIST_ppc
830 #-----------------------------------------------------------------------
835 ${MAKE} distclean >/dev/null
836 ${MAKE} ${target}_config
838 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
839 | tee ${LOG_DIR}/$target.ERR
841 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
842 | tee -a ${LOG_DIR}/$target.MAKELOG
845 #-----------------------------------------------------------------------
851 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
858 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
863 for target in `eval echo '$LIST_'${arg}`
865 build_target ${target}
868 *) build_target ${arg}