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 #########################################################################
236 #########################################################################
238 #########################################################################
245 #########################################################################
247 #########################################################################
270 #########################################################################
271 ## MPC8260 Systems (includes 8250, 8255 etc.)
272 #########################################################################
305 #########################################################################
306 ## MPC83xx Systems (includes 8349, etc.)
307 #########################################################################
330 #########################################################################
331 ## MPC85xx Systems (includes 8540, 8560 etc.)
332 #########################################################################
357 #########################################################################
359 #########################################################################
367 #########################################################################
369 #########################################################################
413 #########################################################################
415 #########################################################################
425 #########################################################################
427 #########################################################################
443 #########################################################################
445 #########################################################################
484 #########################################################################
486 #########################################################################
492 #########################################################################
494 #########################################################################
501 #########################################################################
503 #########################################################################
544 #########################################################################
545 ## MIPS Systems (default = big endian)
546 #########################################################################
571 #########################################################################
572 ## MIPS Systems (little endian)
573 #########################################################################
590 #########################################################################
592 #########################################################################
604 #########################################################################
606 #########################################################################
611 ADNPESC1_DNPEVA2_base_32\
619 #########################################################################
621 #########################################################################
631 #########################################################################
632 ## MicroBlaze Systems
633 #########################################################################
641 #########################################################################
643 #########################################################################
648 EB+MCF-EV123_internal \
662 #########################################################################
664 #########################################################################
672 #########################################################################
674 #########################################################################
683 #########################################################################
685 #########################################################################
701 #-----------------------------------------------------------------------
703 #----- for now, just run PPC by default -----
704 [ $# = 0 ] && set $LIST_ppc
706 #-----------------------------------------------------------------------
711 ${MAKE} distclean >/dev/null
712 ${MAKE} ${target}_config
714 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
715 | tee ${LOG_DIR}/$target.ERR
717 ${CROSS_COMPILE:-ppc_8xx-}size ${BUILD_DIR}/u-boot \
718 | tee -a ${LOG_DIR}/$target.MAKELOG
721 #-----------------------------------------------------------------------
727 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
734 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
738 for target in `eval echo '$LIST_'${arg}`
740 build_target ${target}
743 *) build_target ${arg}