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 #########################################################################
339 MPC8313ERDB_NAND_66 \
359 #########################################################################
360 ## MPC85xx Systems (includes 8540, 8560 etc.)
361 #########################################################################
390 #########################################################################
392 #########################################################################
400 #########################################################################
402 #########################################################################
424 #########################################################################
426 #########################################################################
450 #########################################################################
452 #########################################################################
462 #########################################################################
464 #########################################################################
480 #########################################################################
482 #########################################################################
520 #########################################################################
522 #########################################################################
528 #########################################################################
530 #########################################################################
541 #########################################################################
543 #########################################################################
560 #########################################################################
562 #########################################################################
591 #########################################################################
593 #########################################################################
606 #########################################################################
607 ## MIPS Systems (default = big endian)
608 #########################################################################
634 #########################################################################
635 ## MIPS Systems (little endian)
636 #########################################################################
653 #########################################################################
655 #########################################################################
667 #########################################################################
669 #########################################################################
674 ADNPESC1_DNPEVA2_base_32\
682 #########################################################################
684 #########################################################################
694 #########################################################################
695 ## MicroBlaze Systems
696 #########################################################################
703 #########################################################################
705 #########################################################################
710 EB+MCF-EV123_internal \
731 #########################################################################
733 #########################################################################
746 #########################################################################
748 #########################################################################
757 #########################################################################
759 #########################################################################
786 #########################################################################
788 #########################################################################
790 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
792 #-----------------------------------------------------------------------
794 #----- for now, just run PPC by default -----
795 [ $# = 0 ] && set $LIST_ppc
797 #-----------------------------------------------------------------------
802 ${MAKE} distclean >/dev/null
803 ${MAKE} ${target}_config
805 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
806 | tee ${LOG_DIR}/$target.ERR
808 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
809 | tee -a ${LOG_DIR}/$target.MAKELOG
812 #-----------------------------------------------------------------------
818 arm|SA|ARM7|ARM9|ARM10|ARM11|at91|ixp|pxa \
825 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
830 for target in `eval echo '$LIST_'${arg}`
832 build_target ${target}
835 *) build_target ${arg}