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 #########################################################################
240 #########################################################################
242 #########################################################################
249 #########################################################################
251 #########################################################################
274 #########################################################################
275 ## MPC8260 Systems (includes 8250, 8255 etc.)
276 #########################################################################
309 #########################################################################
310 ## MPC83xx Systems (includes 8349, etc.)
311 #########################################################################
334 #########################################################################
335 ## MPC85xx Systems (includes 8540, 8560 etc.)
336 #########################################################################
361 #########################################################################
363 #########################################################################
371 #########################################################################
373 #########################################################################
417 #########################################################################
419 #########################################################################
429 #########################################################################
431 #########################################################################
447 #########################################################################
449 #########################################################################
490 #########################################################################
492 #########################################################################
498 #########################################################################
500 #########################################################################
507 #########################################################################
509 #########################################################################
550 #########################################################################
551 ## MIPS Systems (default = big endian)
552 #########################################################################
578 #########################################################################
579 ## MIPS Systems (little endian)
580 #########################################################################
597 #########################################################################
599 #########################################################################
611 #########################################################################
613 #########################################################################
618 ADNPESC1_DNPEVA2_base_32\
626 #########################################################################
628 #########################################################################
638 #########################################################################
639 ## MicroBlaze Systems
640 #########################################################################
648 #########################################################################
650 #########################################################################
655 EB+MCF-EV123_internal \
673 #########################################################################
675 #########################################################################
684 #########################################################################
686 #########################################################################
695 #########################################################################
697 #########################################################################
714 #-----------------------------------------------------------------------
716 #----- for now, just run PPC by default -----
717 [ $# = 0 ] && set $LIST_ppc
719 #-----------------------------------------------------------------------
724 ${MAKE} distclean >/dev/null
725 ${MAKE} ${target}_config
727 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
728 | tee ${LOG_DIR}/$target.ERR
730 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
731 | tee -a ${LOG_DIR}/$target.MAKELOG
734 #-----------------------------------------------------------------------
740 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
747 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
751 for target in `eval echo '$LIST_'${arg}`
753 build_target ${target}
756 *) build_target ${arg}