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 #########################################################################
65 #########################################################################
67 #########################################################################
73 #########################################################################
75 #########################################################################
153 #########################################################################
155 #########################################################################
246 #########################################################################
248 #########################################################################
255 #########################################################################
257 #########################################################################
281 #########################################################################
282 ## MPC8260 Systems (includes 8250, 8255 etc.)
283 #########################################################################
317 #########################################################################
318 ## MPC83xx Systems (includes 8349, etc.)
319 #########################################################################
343 #########################################################################
344 ## MPC85xx Systems (includes 8540, 8560 etc.)
345 #########################################################################
374 #########################################################################
376 #########################################################################
384 #########################################################################
386 #########################################################################
408 #########################################################################
410 #########################################################################
434 #########################################################################
436 #########################################################################
446 #########################################################################
448 #########################################################################
464 #########################################################################
466 #########################################################################
504 #########################################################################
506 #########################################################################
512 #########################################################################
514 #########################################################################
524 #########################################################################
526 #########################################################################
542 #########################################################################
544 #########################################################################
573 #########################################################################
575 #########################################################################
588 #########################################################################
589 ## MIPS Systems (default = big endian)
590 #########################################################################
616 #########################################################################
617 ## MIPS Systems (little endian)
618 #########################################################################
635 #########################################################################
637 #########################################################################
649 #########################################################################
651 #########################################################################
656 ADNPESC1_DNPEVA2_base_32\
664 #########################################################################
666 #########################################################################
676 #########################################################################
677 ## MicroBlaze Systems
678 #########################################################################
686 #########################################################################
688 #########################################################################
693 EB+MCF-EV123_internal \
713 #########################################################################
715 #########################################################################
728 #########################################################################
730 #########################################################################
739 #########################################################################
741 #########################################################################
768 #########################################################################
770 #########################################################################
772 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
774 #-----------------------------------------------------------------------
776 #----- for now, just run PPC by default -----
777 [ $# = 0 ] && set $LIST_ppc
779 #-----------------------------------------------------------------------
784 ${MAKE} distclean >/dev/null
785 ${MAKE} ${target}_config
787 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
788 | tee ${LOG_DIR}/$target.ERR
790 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
791 | tee -a ${LOG_DIR}/$target.MAKELOG
794 #-----------------------------------------------------------------------
800 arm|SA|ARM7|ARM9|ARM10|ARM11|at91|ixp|pxa \
807 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
812 for target in `eval echo '$LIST_'${arg}`
814 build_target ${target}
817 *) build_target ${arg}