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 #########################################################################
347 #########################################################################
349 #########################################################################
357 #########################################################################
359 #########################################################################
403 #########################################################################
405 #########################################################################
415 #########################################################################
417 #########################################################################
433 #########################################################################
435 #########################################################################
474 #########################################################################
476 #########################################################################
482 #########################################################################
484 #########################################################################
490 #########################################################################
492 #########################################################################
529 #########################################################################
530 ## MIPS Systems (default = big endian)
531 #########################################################################
556 #########################################################################
557 ## MIPS Systems (little endian)
558 #########################################################################
575 #########################################################################
577 #########################################################################
589 #########################################################################
591 #########################################################################
596 ADNPESC1_DNPEVA2_base_32\
604 #########################################################################
606 #########################################################################
616 #########################################################################
617 ## MicroBlaze Systems
618 #########################################################################
626 #########################################################################
628 #########################################################################
633 EB+MCF-EV123_internal \
647 #########################################################################
649 #########################################################################
657 #########################################################################
659 #########################################################################
668 #########################################################################
670 #########################################################################
685 #-----------------------------------------------------------------------
687 #----- for now, just run PPC by default -----
688 [ $# = 0 ] && set $LIST_ppc
690 #-----------------------------------------------------------------------
695 ${MAKE} distclean >/dev/null
696 ${MAKE} ${target}_config
698 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
699 | tee ${LOG_DIR}/$target.ERR
701 ${CROSS_COMPILE:-ppc_8xx-}size ${BUILD_DIR}/u-boot \
702 | tee -a ${LOG_DIR}/$target.MAKELOG
705 #-----------------------------------------------------------------------
711 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
718 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
722 for target in `eval echo '$LIST_'${arg}`
724 build_target ${target}
727 *) build_target ${arg}