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 #########################################################################
63 #########################################################################
65 #########################################################################
71 #########################################################################
73 #########################################################################
152 #########################################################################
154 #########################################################################
237 #########################################################################
239 #########################################################################
246 #########################################################################
248 #########################################################################
271 #########################################################################
272 ## MPC8260 Systems (includes 8250, 8255 etc.)
273 #########################################################################
306 #########################################################################
307 ## MPC83xx Systems (includes 8349, etc.)
308 #########################################################################
331 #########################################################################
332 ## MPC85xx Systems (includes 8540, 8560 etc.)
333 #########################################################################
358 #########################################################################
360 #########################################################################
368 #########################################################################
370 #########################################################################
414 #########################################################################
416 #########################################################################
426 #########################################################################
428 #########################################################################
444 #########################################################################
446 #########################################################################
485 #########################################################################
487 #########################################################################
493 #########################################################################
495 #########################################################################
502 #########################################################################
504 #########################################################################
541 #########################################################################
542 ## MIPS Systems (default = big endian)
543 #########################################################################
568 #########################################################################
569 ## MIPS Systems (little endian)
570 #########################################################################
587 #########################################################################
589 #########################################################################
601 #########################################################################
603 #########################################################################
608 ADNPESC1_DNPEVA2_base_32\
616 #########################################################################
618 #########################################################################
628 #########################################################################
629 ## MicroBlaze Systems
630 #########################################################################
638 #########################################################################
640 #########################################################################
645 EB+MCF-EV123_internal \
659 #########################################################################
661 #########################################################################
669 #########################################################################
671 #########################################################################
680 #########################################################################
682 #########################################################################
698 #-----------------------------------------------------------------------
700 #----- for now, just run PPC by default -----
701 [ $# = 0 ] && set $LIST_ppc
703 #-----------------------------------------------------------------------
708 ${MAKE} distclean >/dev/null
709 ${MAKE} ${target}_config
711 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
712 | tee ${LOG_DIR}/$target.ERR
714 ${CROSS_COMPILE:-ppc_8xx-}size ${BUILD_DIR}/u-boot \
715 | tee -a ${LOG_DIR}/$target.MAKELOG
718 #-----------------------------------------------------------------------
724 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
731 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
735 for target in `eval echo '$LIST_'${arg}`
737 build_target ${target}
740 *) build_target ${arg}