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 #########################################################################
495 #########################################################################
497 #########################################################################
503 #########################################################################
505 #########################################################################
514 #########################################################################
516 #########################################################################
557 #########################################################################
558 ## MIPS Systems (default = big endian)
559 #########################################################################
585 #########################################################################
586 ## MIPS Systems (little endian)
587 #########################################################################
604 #########################################################################
606 #########################################################################
618 #########################################################################
620 #########################################################################
625 ADNPESC1_DNPEVA2_base_32\
633 #########################################################################
635 #########################################################################
645 #########################################################################
646 ## MicroBlaze Systems
647 #########################################################################
655 #########################################################################
657 #########################################################################
662 EB+MCF-EV123_internal \
680 #########################################################################
682 #########################################################################
691 #########################################################################
693 #########################################################################
702 #########################################################################
704 #########################################################################
724 #########################################################################
726 #########################################################################
728 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
730 #-----------------------------------------------------------------------
732 #----- for now, just run PPC by default -----
733 [ $# = 0 ] && set $LIST_ppc
735 #-----------------------------------------------------------------------
740 ${MAKE} distclean >/dev/null
741 ${MAKE} ${target}_config
743 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
744 | tee ${LOG_DIR}/$target.ERR
746 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
747 | tee -a ${LOG_DIR}/$target.MAKELOG
750 #-----------------------------------------------------------------------
756 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
764 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
768 for target in `eval echo '$LIST_'${arg}`
770 build_target ${target}
773 *) build_target ${arg}