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 #########################################################################
276 #########################################################################
277 ## MPC8260 Systems (includes 8250, 8255 etc.)
278 #########################################################################
311 #########################################################################
312 ## MPC83xx Systems (includes 8349, etc.)
313 #########################################################################
336 #########################################################################
337 ## MPC85xx Systems (includes 8540, 8560 etc.)
338 #########################################################################
363 #########################################################################
365 #########################################################################
373 #########################################################################
375 #########################################################################
419 #########################################################################
421 #########################################################################
431 #########################################################################
433 #########################################################################
449 #########################################################################
451 #########################################################################
496 #########################################################################
498 #########################################################################
504 #########################################################################
506 #########################################################################
515 #########################################################################
517 #########################################################################
558 #########################################################################
559 ## MIPS Systems (default = big endian)
560 #########################################################################
586 #########################################################################
587 ## MIPS Systems (little endian)
588 #########################################################################
605 #########################################################################
607 #########################################################################
619 #########################################################################
621 #########################################################################
626 ADNPESC1_DNPEVA2_base_32\
634 #########################################################################
636 #########################################################################
646 #########################################################################
647 ## MicroBlaze Systems
648 #########################################################################
656 #########################################################################
658 #########################################################################
663 EB+MCF-EV123_internal \
681 #########################################################################
683 #########################################################################
692 #########################################################################
694 #########################################################################
703 #########################################################################
705 #########################################################################
725 #########################################################################
727 #########################################################################
729 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
731 #-----------------------------------------------------------------------
733 #----- for now, just run PPC by default -----
734 [ $# = 0 ] && set $LIST_ppc
736 #-----------------------------------------------------------------------
741 ${MAKE} distclean >/dev/null
742 ${MAKE} ${target}_config
744 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
745 | tee ${LOG_DIR}/$target.ERR
747 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
748 | tee -a ${LOG_DIR}/$target.MAKELOG
751 #-----------------------------------------------------------------------
757 arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \
765 ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \
769 for target in `eval echo '$LIST_'${arg}`
771 build_target ${target}
774 *) build_target ${arg}