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 #########################################################################
241 #########################################################################
243 #########################################################################
250 #########################################################################
252 #########################################################################
275 #########################################################################
276 ## MPC8260 Systems (includes 8250, 8255 etc.)
277 #########################################################################
310 #########################################################################
311 ## MPC83xx Systems (includes 8349, etc.)
312 #########################################################################
335 #########################################################################
336 ## MPC85xx Systems (includes 8540, 8560 etc.)
337 #########################################################################
362 #########################################################################
364 #########################################################################
372 #########################################################################
374 #########################################################################
418 #########################################################################
420 #########################################################################
430 #########################################################################
432 #########################################################################
448 #########################################################################
450 #########################################################################
491 #########################################################################
493 #########################################################################
499 #########################################################################
501 #########################################################################
508 #########################################################################
510 #########################################################################
551 #########################################################################
552 ## MIPS Systems (default = big endian)
553 #########################################################################
579 #########################################################################
580 ## MIPS Systems (little endian)
581 #########################################################################
598 #########################################################################
600 #########################################################################
612 #########################################################################
614 #########################################################################
619 ADNPESC1_DNPEVA2_base_32\
627 #########################################################################
629 #########################################################################
639 #########################################################################
640 ## MicroBlaze Systems
641 #########################################################################
649 #########################################################################
651 #########################################################################
656 EB+MCF-EV123_internal \
674 #########################################################################
676 #########################################################################
685 #########################################################################
687 #########################################################################
696 #########################################################################
698 #########################################################################
718 #-----------------------------------------------------------------------
720 #----- for now, just run PPC by default -----
721 [ $# = 0 ] && set $LIST_ppc
723 #-----------------------------------------------------------------------
728 ${MAKE} distclean >/dev/null
729 ${MAKE} ${target}_config
731 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
732 | tee ${LOG_DIR}/$target.ERR
734 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
735 | tee -a ${LOG_DIR}/$target.MAKELOG
738 #-----------------------------------------------------------------------
744 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
751 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
755 for target in `eval echo '$LIST_'${arg}`
757 build_target ${target}
760 *) build_target ${arg}