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 #########################################################################
222 #########################################################################
224 #########################################################################
231 #########################################################################
233 #########################################################################
256 #########################################################################
257 ## MPC8260 Systems (includes 8250, 8255 etc.)
258 #########################################################################
290 #########################################################################
291 ## MPC83xx Systems (includes 8349, etc.)
292 #########################################################################
307 #########################################################################
308 ## MPC85xx Systems (includes 8540, 8560 etc.)
309 #########################################################################
332 #########################################################################
334 #########################################################################
341 #########################################################################
343 #########################################################################
380 #########################################################################
382 #########################################################################
392 #########################################################################
394 #########################################################################
410 #########################################################################
412 #########################################################################
451 #########################################################################
453 #########################################################################
459 #########################################################################
461 #########################################################################
467 #########################################################################
469 #########################################################################
506 #########################################################################
507 ## MIPS Systems (default = big endian)
508 #########################################################################
533 #########################################################################
534 ## MIPS Systems (little endian)
535 #########################################################################
551 #########################################################################
553 #########################################################################
565 #########################################################################
567 #########################################################################
572 ADNPESC1_DNPEVA2_base_32\
580 #########################################################################
582 #########################################################################
592 #########################################################################
593 ## MicroBlaze Systems
594 #########################################################################
602 #########################################################################
604 #########################################################################
609 EB+MCF-EV123_internal \
618 #########################################################################
620 #########################################################################
626 #########################################################################
628 #########################################################################
637 #-----------------------------------------------------------------------
639 #----- for now, just run PPC by default -----
640 [ $# = 0 ] && set $LIST_ppc
642 #-----------------------------------------------------------------------
647 ${MAKE} distclean >/dev/null
648 ${MAKE} ${target}_config
650 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
651 | tee ${LOG_DIR}/$target.ERR
653 ${CROSS_COMPILE:-ppc_8xx-}size ${BUILD_DIR}/u-boot \
654 | tee -a ${LOG_DIR}/$target.MAKELOG
657 #-----------------------------------------------------------------------
663 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
670 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
672 for target in `eval echo '$LIST_'${arg}`
674 build_target ${target}
677 *) build_target ${arg}