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 #########################################################################
150 #########################################################################
152 #########################################################################
234 #########################################################################
236 #########################################################################
243 #########################################################################
245 #########################################################################
268 #########################################################################
269 ## MPC8260 Systems (includes 8250, 8255 etc.)
270 #########################################################################
302 #########################################################################
303 ## MPC83xx Systems (includes 8349, etc.)
304 #########################################################################
325 #########################################################################
326 ## MPC85xx Systems (includes 8540, 8560 etc.)
327 #########################################################################
352 #########################################################################
354 #########################################################################
362 #########################################################################
364 #########################################################################
408 #########################################################################
410 #########################################################################
420 #########################################################################
422 #########################################################################
438 #########################################################################
440 #########################################################################
479 #########################################################################
481 #########################################################################
487 #########################################################################
489 #########################################################################
496 #########################################################################
498 #########################################################################
535 #########################################################################
536 ## MIPS Systems (default = big endian)
537 #########################################################################
562 #########################################################################
563 ## MIPS Systems (little endian)
564 #########################################################################
581 #########################################################################
583 #########################################################################
595 #########################################################################
597 #########################################################################
602 ADNPESC1_DNPEVA2_base_32\
610 #########################################################################
612 #########################################################################
622 #########################################################################
623 ## MicroBlaze Systems
624 #########################################################################
632 #########################################################################
634 #########################################################################
639 EB+MCF-EV123_internal \
653 #########################################################################
655 #########################################################################
663 #########################################################################
665 #########################################################################
674 #########################################################################
676 #########################################################################
691 #-----------------------------------------------------------------------
693 #----- for now, just run PPC by default -----
694 [ $# = 0 ] && set $LIST_ppc
696 #-----------------------------------------------------------------------
701 ${MAKE} distclean >/dev/null
702 ${MAKE} ${target}_config
704 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
705 | tee ${LOG_DIR}/$target.ERR
707 ${CROSS_COMPILE:-ppc_8xx-}size ${BUILD_DIR}/u-boot \
708 | tee -a ${LOG_DIR}/$target.MAKELOG
711 #-----------------------------------------------------------------------
717 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
724 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
728 for target in `eval echo '$LIST_'${arg}`
730 build_target ${target}
733 *) build_target ${arg}