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 #########################################################################
301 #########################################################################
302 ## MPC8260 Systems (includes 8250, 8255 etc.)
303 #########################################################################
337 #########################################################################
338 ## MPC83xx Systems (includes 8349, etc.)
339 #########################################################################
344 MPC8313ERDB_NAND_66 \
365 #########################################################################
366 ## MPC85xx Systems (includes 8540, 8560 etc.)
367 #########################################################################
402 #########################################################################
404 #########################################################################
412 #########################################################################
414 #########################################################################
436 #########################################################################
438 #########################################################################
462 #########################################################################
464 #########################################################################
474 #########################################################################
476 #########################################################################
492 #########################################################################
494 #########################################################################
533 #########################################################################
535 #########################################################################
541 #########################################################################
543 #########################################################################
556 #########################################################################
557 ## ARM Cortex-A8 Systems
558 #########################################################################
559 LIST_ARM_CORTEX_A8=" \
568 #########################################################################
570 #########################################################################
590 #########################################################################
592 #########################################################################
621 #########################################################################
623 #########################################################################
631 ${LIST_ARM_CORTEX_A8} \
637 #########################################################################
638 ## MIPS Systems (default = big endian)
639 #########################################################################
646 vct_platinum_onenand \
647 vct_platinum_onenand_small \
649 vct_platinumavc_small \
650 vct_platinumavc_onenand \
651 vct_platinumavc_onenand_small \
654 vct_premium_onenand \
655 vct_premium_onenand_small \
677 #########################################################################
678 ## MIPS Systems (little endian)
679 #########################################################################
696 #########################################################################
698 #########################################################################
711 #########################################################################
713 #########################################################################
718 ADNPESC1_DNPEVA2_base_32\
726 #########################################################################
728 #########################################################################
738 #########################################################################
739 ## MicroBlaze Systems
740 #########################################################################
747 #########################################################################
749 #########################################################################
754 EB+MCF-EV123_internal \
775 #########################################################################
777 #########################################################################
790 #########################################################################
792 #########################################################################
806 #########################################################################
808 #########################################################################
835 #########################################################################
837 #########################################################################
839 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
841 #-----------------------------------------------------------------------
843 #----- for now, just run PPC by default -----
844 [ $# = 0 ] && set $LIST_ppc
846 #-----------------------------------------------------------------------
851 ${MAKE} distclean >/dev/null
852 ${MAKE} ${target}_config
854 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
855 | tee ${LOG_DIR}/$target.ERR
857 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
858 | tee -a ${LOG_DIR}/$target.MAKELOG
861 #-----------------------------------------------------------------------
867 arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \
874 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
879 for target in `eval echo '$LIST_'${arg}`
881 build_target ${target}
884 *) build_target ${arg}