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 #########################################################################
512 #########################################################################
514 #########################################################################
555 #########################################################################
556 ## MIPS Systems (default = big endian)
557 #########################################################################
583 #########################################################################
584 ## MIPS Systems (little endian)
585 #########################################################################
602 #########################################################################
604 #########################################################################
616 #########################################################################
618 #########################################################################
623 ADNPESC1_DNPEVA2_base_32\
631 #########################################################################
633 #########################################################################
643 #########################################################################
644 ## MicroBlaze Systems
645 #########################################################################
653 #########################################################################
655 #########################################################################
660 EB+MCF-EV123_internal \
678 #########################################################################
680 #########################################################################
689 #########################################################################
691 #########################################################################
700 #########################################################################
702 #########################################################################
722 #########################################################################
724 #########################################################################
726 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
728 #-----------------------------------------------------------------------
730 #----- for now, just run PPC by default -----
731 [ $# = 0 ] && set $LIST_ppc
733 #-----------------------------------------------------------------------
738 ${MAKE} distclean >/dev/null
739 ${MAKE} ${target}_config
741 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
742 | tee ${LOG_DIR}/$target.ERR
744 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
745 | tee -a ${LOG_DIR}/$target.MAKELOG
748 #-----------------------------------------------------------------------
754 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
762 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
766 for target in `eval echo '$LIST_'${arg}`
768 build_target ${target}
771 *) build_target ${arg}