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 #########################################################################
64 #########################################################################
66 #########################################################################
72 #########################################################################
74 #########################################################################
153 #########################################################################
155 #########################################################################
243 #########################################################################
245 #########################################################################
252 #########################################################################
254 #########################################################################
278 #########################################################################
279 ## MPC8260 Systems (includes 8250, 8255 etc.)
280 #########################################################################
314 #########################################################################
315 ## MPC83xx Systems (includes 8349, etc.)
316 #########################################################################
339 #########################################################################
340 ## MPC85xx Systems (includes 8540, 8560 etc.)
341 #########################################################################
367 #########################################################################
369 #########################################################################
377 #########################################################################
379 #########################################################################
401 #########################################################################
403 #########################################################################
427 #########################################################################
429 #########################################################################
439 #########################################################################
441 #########################################################################
457 #########################################################################
459 #########################################################################
507 #########################################################################
509 #########################################################################
515 #########################################################################
517 #########################################################################
527 #########################################################################
529 #########################################################################
545 #########################################################################
547 #########################################################################
577 #########################################################################
579 #########################################################################
591 #########################################################################
592 ## MIPS Systems (default = big endian)
593 #########################################################################
619 #########################################################################
620 ## MIPS Systems (little endian)
621 #########################################################################
638 #########################################################################
640 #########################################################################
652 #########################################################################
654 #########################################################################
659 ADNPESC1_DNPEVA2_base_32\
667 #########################################################################
669 #########################################################################
679 #########################################################################
680 ## MicroBlaze Systems
681 #########################################################################
689 #########################################################################
691 #########################################################################
696 EB+MCF-EV123_internal \
714 #########################################################################
716 #########################################################################
726 #########################################################################
728 #########################################################################
737 #########################################################################
739 #########################################################################
759 #########################################################################
761 #########################################################################
763 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
765 #-----------------------------------------------------------------------
767 #----- for now, just run PPC by default -----
768 [ $# = 0 ] && set $LIST_ppc
770 #-----------------------------------------------------------------------
775 ${MAKE} distclean >/dev/null
776 ${MAKE} ${target}_config
778 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
779 | tee ${LOG_DIR}/$target.ERR
781 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
782 | tee -a ${LOG_DIR}/$target.MAKELOG
785 #-----------------------------------------------------------------------
791 arm|SA|ARM7|ARM9|ARM10|ARM11|at91|ixp|pxa \
798 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
803 for target in `eval echo '$LIST_'${arg}`
805 build_target ${target}
808 *) build_target ${arg}