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 #########################################################################
62 #########################################################################
64 #########################################################################
70 #########################################################################
72 #########################################################################
149 #########################################################################
151 #########################################################################
226 #########################################################################
228 #########################################################################
235 #########################################################################
237 #########################################################################
260 #########################################################################
261 ## MPC8260 Systems (includes 8250, 8255 etc.)
262 #########################################################################
294 #########################################################################
295 ## MPC83xx Systems (includes 8349, etc.)
296 #########################################################################
311 #########################################################################
312 ## MPC85xx Systems (includes 8540, 8560 etc.)
313 #########################################################################
336 #########################################################################
338 #########################################################################
345 #########################################################################
347 #########################################################################
390 #########################################################################
392 #########################################################################
402 #########################################################################
404 #########################################################################
420 #########################################################################
422 #########################################################################
461 #########################################################################
463 #########################################################################
469 #########################################################################
471 #########################################################################
477 #########################################################################
479 #########################################################################
516 #########################################################################
517 ## MIPS Systems (default = big endian)
518 #########################################################################
543 #########################################################################
544 ## MIPS Systems (little endian)
545 #########################################################################
561 #########################################################################
563 #########################################################################
575 #########################################################################
577 #########################################################################
582 ADNPESC1_DNPEVA2_base_32\
590 #########################################################################
592 #########################################################################
602 #########################################################################
603 ## MicroBlaze Systems
604 #########################################################################
612 #########################################################################
614 #########################################################################
619 EB+MCF-EV123_internal \
632 #########################################################################
634 #########################################################################
640 #########################################################################
642 #########################################################################
651 #-----------------------------------------------------------------------
653 #----- for now, just run PPC by default -----
654 [ $# = 0 ] && set $LIST_ppc
656 #-----------------------------------------------------------------------
661 ${MAKE} distclean >/dev/null
662 ${MAKE} ${target}_config
664 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
665 | tee ${LOG_DIR}/$target.ERR
667 ${CROSS_COMPILE:-ppc_8xx-}size ${BUILD_DIR}/u-boot \
668 | tee -a ${LOG_DIR}/$target.MAKELOG
671 #-----------------------------------------------------------------------
677 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
684 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
686 for target in `eval echo '$LIST_'${arg}`
688 build_target ${target}
691 *) build_target ${arg}