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 #########################################################################
151 #########################################################################
153 #########################################################################
235 #########################################################################
237 #########################################################################
244 #########################################################################
246 #########################################################################
269 #########################################################################
270 ## MPC8260 Systems (includes 8250, 8255 etc.)
271 #########################################################################
304 #########################################################################
305 ## MPC83xx Systems (includes 8349, etc.)
306 #########################################################################
327 #########################################################################
328 ## MPC85xx Systems (includes 8540, 8560 etc.)
329 #########################################################################
354 #########################################################################
356 #########################################################################
364 #########################################################################
366 #########################################################################
410 #########################################################################
412 #########################################################################
422 #########################################################################
424 #########################################################################
440 #########################################################################
442 #########################################################################
481 #########################################################################
483 #########################################################################
489 #########################################################################
491 #########################################################################
498 #########################################################################
500 #########################################################################
537 #########################################################################
538 ## MIPS Systems (default = big endian)
539 #########################################################################
564 #########################################################################
565 ## MIPS Systems (little endian)
566 #########################################################################
583 #########################################################################
585 #########################################################################
597 #########################################################################
599 #########################################################################
604 ADNPESC1_DNPEVA2_base_32\
612 #########################################################################
614 #########################################################################
624 #########################################################################
625 ## MicroBlaze Systems
626 #########################################################################
634 #########################################################################
636 #########################################################################
641 EB+MCF-EV123_internal \
655 #########################################################################
657 #########################################################################
665 #########################################################################
667 #########################################################################
676 #########################################################################
678 #########################################################################
693 #-----------------------------------------------------------------------
695 #----- for now, just run PPC by default -----
696 [ $# = 0 ] && set $LIST_ppc
698 #-----------------------------------------------------------------------
703 ${MAKE} distclean >/dev/null
704 ${MAKE} ${target}_config
706 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
707 | tee ${LOG_DIR}/$target.ERR
709 ${CROSS_COMPILE:-ppc_8xx-}size ${BUILD_DIR}/u-boot \
710 | tee -a ${LOG_DIR}/$target.MAKELOG
713 #-----------------------------------------------------------------------
719 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
726 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
730 for target in `eval echo '$LIST_'${arg}`
732 build_target ${target}
735 *) build_target ${arg}