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 #########################################################################
233 #########################################################################
235 #########################################################################
242 #########################################################################
244 #########################################################################
267 #########################################################################
268 ## MPC8260 Systems (includes 8250, 8255 etc.)
269 #########################################################################
301 #########################################################################
302 ## MPC83xx Systems (includes 8349, etc.)
303 #########################################################################
322 #########################################################################
323 ## MPC85xx Systems (includes 8540, 8560 etc.)
324 #########################################################################
348 #########################################################################
350 #########################################################################
358 #########################################################################
360 #########################################################################
404 #########################################################################
406 #########################################################################
416 #########################################################################
418 #########################################################################
434 #########################################################################
436 #########################################################################
475 #########################################################################
477 #########################################################################
483 #########################################################################
485 #########################################################################
492 #########################################################################
494 #########################################################################
531 #########################################################################
532 ## MIPS Systems (default = big endian)
533 #########################################################################
558 #########################################################################
559 ## MIPS Systems (little endian)
560 #########################################################################
577 #########################################################################
579 #########################################################################
591 #########################################################################
593 #########################################################################
598 ADNPESC1_DNPEVA2_base_32\
606 #########################################################################
608 #########################################################################
618 #########################################################################
619 ## MicroBlaze Systems
620 #########################################################################
628 #########################################################################
630 #########################################################################
635 EB+MCF-EV123_internal \
649 #########################################################################
651 #########################################################################
659 #########################################################################
661 #########################################################################
670 #########################################################################
672 #########################################################################
687 #-----------------------------------------------------------------------
689 #----- for now, just run PPC by default -----
690 [ $# = 0 ] && set $LIST_ppc
692 #-----------------------------------------------------------------------
697 ${MAKE} distclean >/dev/null
698 ${MAKE} ${target}_config
700 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
701 | tee ${LOG_DIR}/$target.ERR
703 ${CROSS_COMPILE:-ppc_8xx-}size ${BUILD_DIR}/u-boot \
704 | tee -a ${LOG_DIR}/$target.MAKELOG
707 #-----------------------------------------------------------------------
713 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
720 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
724 for target in `eval echo '$LIST_'${arg}`
726 build_target ${target}
729 *) build_target ${arg}