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 #########################################################################
149 #########################################################################
151 #########################################################################
226 #########################################################################
228 #########################################################################
235 #########################################################################
237 #########################################################################
260 #########################################################################
261 ## MPC8260 Systems (includes 8250, 8255 etc.)
262 #########################################################################
294 #########################################################################
295 ## MPC83xx Systems (includes 8349, etc.)
296 #########################################################################
312 #########################################################################
313 ## MPC85xx Systems (includes 8540, 8560 etc.)
314 #########################################################################
337 #########################################################################
339 #########################################################################
346 #########################################################################
348 #########################################################################
385 #########################################################################
387 #########################################################################
397 #########################################################################
399 #########################################################################
415 #########################################################################
417 #########################################################################
456 #########################################################################
458 #########################################################################
464 #########################################################################
466 #########################################################################
472 #########################################################################
474 #########################################################################
511 #########################################################################
512 ## MIPS Systems (default = big endian)
513 #########################################################################
538 #########################################################################
539 ## MIPS Systems (little endian)
540 #########################################################################
556 #########################################################################
558 #########################################################################
570 #########################################################################
572 #########################################################################
577 ADNPESC1_DNPEVA2_base_32\
585 #########################################################################
587 #########################################################################
597 #########################################################################
598 ## MicroBlaze Systems
599 #########################################################################
607 #########################################################################
609 #########################################################################
614 EB+MCF-EV123_internal \
623 #########################################################################
625 #########################################################################
631 #########################################################################
633 #########################################################################
642 #-----------------------------------------------------------------------
644 #----- for now, just run PPC by default -----
645 [ $# = 0 ] && set $LIST_ppc
647 #-----------------------------------------------------------------------
652 ${MAKE} distclean >/dev/null
653 ${MAKE} ${target}_config
655 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
656 | tee ${LOG_DIR}/$target.ERR
658 ${CROSS_COMPILE:-ppc_8xx-}size ${BUILD_DIR}/u-boot \
659 | tee -a ${LOG_DIR}/$target.MAKELOG
662 #-----------------------------------------------------------------------
668 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
675 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
677 for target in `eval echo '$LIST_'${arg}`
679 build_target ${target}
682 *) build_target ${arg}