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 #########################################################################
227 #########################################################################
229 #########################################################################
236 #########################################################################
238 #########################################################################
261 #########################################################################
262 ## MPC8260 Systems (includes 8250, 8255 etc.)
263 #########################################################################
295 #########################################################################
296 ## MPC83xx Systems (includes 8349, etc.)
297 #########################################################################
315 #########################################################################
316 ## MPC85xx Systems (includes 8540, 8560 etc.)
317 #########################################################################
340 #########################################################################
342 #########################################################################
350 #########################################################################
352 #########################################################################
395 #########################################################################
397 #########################################################################
407 #########################################################################
409 #########################################################################
425 #########################################################################
427 #########################################################################
466 #########################################################################
468 #########################################################################
474 #########################################################################
476 #########################################################################
482 #########################################################################
484 #########################################################################
521 #########################################################################
522 ## MIPS Systems (default = big endian)
523 #########################################################################
548 #########################################################################
549 ## MIPS Systems (little endian)
550 #########################################################################
566 #########################################################################
568 #########################################################################
580 #########################################################################
582 #########################################################################
587 ADNPESC1_DNPEVA2_base_32\
595 #########################################################################
597 #########################################################################
607 #########################################################################
608 ## MicroBlaze Systems
609 #########################################################################
617 #########################################################################
619 #########################################################################
624 EB+MCF-EV123_internal \
638 #########################################################################
640 #########################################################################
646 #########################################################################
648 #########################################################################
657 #-----------------------------------------------------------------------
659 #----- for now, just run PPC by default -----
660 [ $# = 0 ] && set $LIST_ppc
662 #-----------------------------------------------------------------------
667 ${MAKE} distclean >/dev/null
668 ${MAKE} ${target}_config
670 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
671 | tee ${LOG_DIR}/$target.ERR
673 ${CROSS_COMPILE:-ppc_8xx-}size ${BUILD_DIR}/u-boot \
674 | tee -a ${LOG_DIR}/$target.MAKELOG
677 #-----------------------------------------------------------------------
683 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
690 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
692 for target in `eval echo '$LIST_'${arg}`
694 build_target ${target}
697 *) build_target ${arg}