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 #########################################################################
509 #########################################################################
511 #########################################################################
552 #########################################################################
553 ## MIPS Systems (default = big endian)
554 #########################################################################
580 #########################################################################
581 ## MIPS Systems (little endian)
582 #########################################################################
599 #########################################################################
601 #########################################################################
613 #########################################################################
615 #########################################################################
620 ADNPESC1_DNPEVA2_base_32\
628 #########################################################################
630 #########################################################################
640 #########################################################################
641 ## MicroBlaze Systems
642 #########################################################################
650 #########################################################################
652 #########################################################################
657 EB+MCF-EV123_internal \
675 #########################################################################
677 #########################################################################
686 #########################################################################
688 #########################################################################
697 #########################################################################
699 #########################################################################
715 #-----------------------------------------------------------------------
717 #----- for now, just run PPC by default -----
718 [ $# = 0 ] && set $LIST_ppc
720 #-----------------------------------------------------------------------
725 ${MAKE} distclean >/dev/null
726 ${MAKE} ${target}_config
728 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
729 | tee ${LOG_DIR}/$target.ERR
731 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
732 | tee -a ${LOG_DIR}/$target.MAKELOG
735 #-----------------------------------------------------------------------
741 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
748 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
752 for target in `eval echo '$LIST_'${arg}`
754 build_target ${target}
757 *) build_target ${arg}