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 #########################################################################
237 #########################################################################
239 #########################################################################
246 #########################################################################
248 #########################################################################
271 #########################################################################
272 ## MPC8260 Systems (includes 8250, 8255 etc.)
273 #########################################################################
306 #########################################################################
307 ## MPC83xx Systems (includes 8349, etc.)
308 #########################################################################
331 #########################################################################
332 ## MPC85xx Systems (includes 8540, 8560 etc.)
333 #########################################################################
358 #########################################################################
360 #########################################################################
368 #########################################################################
370 #########################################################################
414 #########################################################################
416 #########################################################################
426 #########################################################################
428 #########################################################################
444 #########################################################################
446 #########################################################################
487 #########################################################################
489 #########################################################################
495 #########################################################################
497 #########################################################################
504 #########################################################################
506 #########################################################################
547 #########################################################################
548 ## MIPS Systems (default = big endian)
549 #########################################################################
575 #########################################################################
576 ## MIPS Systems (little endian)
577 #########################################################################
594 #########################################################################
596 #########################################################################
608 #########################################################################
610 #########################################################################
615 ADNPESC1_DNPEVA2_base_32\
623 #########################################################################
625 #########################################################################
635 #########################################################################
636 ## MicroBlaze Systems
637 #########################################################################
645 #########################################################################
647 #########################################################################
652 EB+MCF-EV123_internal \
670 #########################################################################
672 #########################################################################
681 #########################################################################
683 #########################################################################
692 #########################################################################
694 #########################################################################
710 #-----------------------------------------------------------------------
712 #----- for now, just run PPC by default -----
713 [ $# = 0 ] && set $LIST_ppc
715 #-----------------------------------------------------------------------
720 ${MAKE} distclean >/dev/null
721 ${MAKE} ${target}_config
723 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
724 | tee ${LOG_DIR}/$target.ERR
726 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
727 | tee -a ${LOG_DIR}/$target.MAKELOG
730 #-----------------------------------------------------------------------
736 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
743 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
747 for target in `eval echo '$LIST_'${arg}`
749 build_target ${target}
752 *) build_target ${arg}