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 #########################################################################
396 #########################################################################
398 #########################################################################
406 #########################################################################
408 #########################################################################
430 #########################################################################
432 #########################################################################
456 #########################################################################
458 #########################################################################
468 #########################################################################
470 #########################################################################
486 #########################################################################
488 #########################################################################
526 #########################################################################
528 #########################################################################
534 #########################################################################
536 #########################################################################
547 #########################################################################
549 #########################################################################
566 #########################################################################
568 #########################################################################
597 #########################################################################
599 #########################################################################
612 #########################################################################
613 ## MIPS Systems (default = big endian)
614 #########################################################################
621 vct_platinum_onenand \
622 vct_platinum_onenand_small \
624 vct_platinumavc_small \
625 vct_platinumavc_onenand \
626 vct_platinumavc_onenand_small \
629 vct_premium_onenand \
630 vct_premium_onenand_small \
652 #########################################################################
653 ## MIPS Systems (little endian)
654 #########################################################################
671 #########################################################################
673 #########################################################################
686 #########################################################################
688 #########################################################################
693 ADNPESC1_DNPEVA2_base_32\
701 #########################################################################
703 #########################################################################
713 #########################################################################
714 ## MicroBlaze Systems
715 #########################################################################
722 #########################################################################
724 #########################################################################
729 EB+MCF-EV123_internal \
750 #########################################################################
752 #########################################################################
765 #########################################################################
767 #########################################################################
776 #########################################################################
778 #########################################################################
805 #########################################################################
807 #########################################################################
809 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
811 #-----------------------------------------------------------------------
813 #----- for now, just run PPC by default -----
814 [ $# = 0 ] && set $LIST_ppc
816 #-----------------------------------------------------------------------
821 ${MAKE} distclean >/dev/null
822 ${MAKE} ${target}_config
824 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
825 | tee ${LOG_DIR}/$target.ERR
827 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
828 | tee -a ${LOG_DIR}/$target.MAKELOG
831 #-----------------------------------------------------------------------
837 arm|SA|ARM7|ARM9|ARM10|ARM11|at91|ixp|pxa \
844 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
849 for target in `eval echo '$LIST_'${arg}`
851 build_target ${target}
854 *) build_target ${arg}