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 #########################################################################
485 #########################################################################
487 #########################################################################
493 #########################################################################
495 #########################################################################
502 #########################################################################
504 #########################################################################
545 #########################################################################
546 ## MIPS Systems (default = big endian)
547 #########################################################################
573 #########################################################################
574 ## MIPS Systems (little endian)
575 #########################################################################
592 #########################################################################
594 #########################################################################
606 #########################################################################
608 #########################################################################
613 ADNPESC1_DNPEVA2_base_32\
621 #########################################################################
623 #########################################################################
633 #########################################################################
634 ## MicroBlaze Systems
635 #########################################################################
643 #########################################################################
645 #########################################################################
650 EB+MCF-EV123_internal \
668 #########################################################################
670 #########################################################################
679 #########################################################################
681 #########################################################################
690 #########################################################################
692 #########################################################################
708 #-----------------------------------------------------------------------
710 #----- for now, just run PPC by default -----
711 [ $# = 0 ] && set $LIST_ppc
713 #-----------------------------------------------------------------------
718 ${MAKE} distclean >/dev/null
719 ${MAKE} ${target}_config
721 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
722 | tee ${LOG_DIR}/$target.ERR
724 ${CROSS_COMPILE:-ppc_8xx-}size ${BUILD_DIR}/u-boot \
725 | tee -a ${LOG_DIR}/$target.MAKELOG
728 #-----------------------------------------------------------------------
734 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
741 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
745 for target in `eval echo '$LIST_'${arg}`
747 build_target ${target}
750 *) build_target ${arg}