5 if [ "${CROSS_COMPILE}" ] ; then
6 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
11 if [ "${MAKEALL_LOGDIR}" ] ; then
12 LOG_DIR=${MAKEALL_LOGDIR}
17 if [ ! "${BUILD_DIR}" ] ; then
21 [ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
25 #########################################################################
27 #########################################################################
33 #########################################################################
35 #########################################################################
64 #########################################################################
66 #########################################################################
72 #########################################################################
74 #########################################################################
153 #########################################################################
155 #########################################################################
242 #########################################################################
244 #########################################################################
251 #########################################################################
253 #########################################################################
277 #########################################################################
278 ## MPC8260 Systems (includes 8250, 8255 etc.)
279 #########################################################################
313 #########################################################################
314 ## MPC83xx Systems (includes 8349, etc.)
315 #########################################################################
338 #########################################################################
339 ## MPC85xx Systems (includes 8540, 8560 etc.)
340 #########################################################################
366 #########################################################################
368 #########################################################################
376 #########################################################################
378 #########################################################################
400 #########################################################################
402 #########################################################################
426 #########################################################################
428 #########################################################################
438 #########################################################################
440 #########################################################################
456 #########################################################################
458 #########################################################################
506 #########################################################################
508 #########################################################################
514 #########################################################################
516 #########################################################################
526 #########################################################################
528 #########################################################################
544 #########################################################################
546 #########################################################################
576 #########################################################################
578 #########################################################################
590 #########################################################################
591 ## MIPS Systems (default = big endian)
592 #########################################################################
618 #########################################################################
619 ## MIPS Systems (little endian)
620 #########################################################################
637 #########################################################################
639 #########################################################################
651 #########################################################################
653 #########################################################################
658 ADNPESC1_DNPEVA2_base_32\
666 #########################################################################
668 #########################################################################
678 #########################################################################
679 ## MicroBlaze Systems
680 #########################################################################
688 #########################################################################
690 #########################################################################
695 EB+MCF-EV123_internal \
713 #########################################################################
715 #########################################################################
724 #########################################################################
726 #########################################################################
735 #########################################################################
737 #########################################################################
757 #########################################################################
759 #########################################################################
761 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
763 #-----------------------------------------------------------------------
765 #----- for now, just run PPC by default -----
766 [ $# = 0 ] && set $LIST_ppc
768 #-----------------------------------------------------------------------
773 ${MAKE} distclean >/dev/null
774 ${MAKE} ${target}_config
776 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
777 | tee ${LOG_DIR}/$target.ERR
779 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
780 | tee -a ${LOG_DIR}/$target.MAKELOG
783 #-----------------------------------------------------------------------
789 arm|SA|ARM7|ARM9|ARM10|ARM11|at91|ixp|pxa \
796 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
801 for target in `eval echo '$LIST_'${arg}`
803 build_target ${target}
806 *) build_target ${arg}