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 #########################################################################
241 #########################################################################
243 #########################################################################
250 #########################################################################
252 #########################################################################
275 #########################################################################
276 ## MPC8260 Systems (includes 8250, 8255 etc.)
277 #########################################################################
310 #########################################################################
311 ## MPC83xx Systems (includes 8349, etc.)
312 #########################################################################
335 #########################################################################
336 ## MPC85xx Systems (includes 8540, 8560 etc.)
337 #########################################################################
362 #########################################################################
364 #########################################################################
372 #########################################################################
374 #########################################################################
418 #########################################################################
420 #########################################################################
430 #########################################################################
432 #########################################################################
448 #########################################################################
450 #########################################################################
496 #########################################################################
498 #########################################################################
504 #########################################################################
506 #########################################################################
516 #########################################################################
518 #########################################################################
559 #########################################################################
560 ## MIPS Systems (default = big endian)
561 #########################################################################
587 #########################################################################
588 ## MIPS Systems (little endian)
589 #########################################################################
606 #########################################################################
608 #########################################################################
620 #########################################################################
622 #########################################################################
627 ADNPESC1_DNPEVA2_base_32\
635 #########################################################################
637 #########################################################################
647 #########################################################################
648 ## MicroBlaze Systems
649 #########################################################################
657 #########################################################################
659 #########################################################################
664 EB+MCF-EV123_internal \
682 #########################################################################
684 #########################################################################
693 #########################################################################
695 #########################################################################
704 #########################################################################
706 #########################################################################
726 #########################################################################
728 #########################################################################
730 LIST_sparc="gr_xc3s_1500"
732 #-----------------------------------------------------------------------
734 #----- for now, just run PPC by default -----
735 [ $# = 0 ] && set $LIST_ppc
737 #-----------------------------------------------------------------------
742 ${MAKE} distclean >/dev/null
743 ${MAKE} ${target}_config
745 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
746 | tee ${LOG_DIR}/$target.ERR
748 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
749 | tee -a ${LOG_DIR}/$target.MAKELOG
752 #-----------------------------------------------------------------------
758 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
766 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
770 for target in `eval echo '$LIST_'${arg}`
772 build_target ${target}
775 *) build_target ${arg}