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 #########################################################################
64 #########################################################################
66 #########################################################################
72 #########################################################################
74 #########################################################################
153 #########################################################################
155 #########################################################################
243 #########################################################################
245 #########################################################################
252 #########################################################################
254 #########################################################################
278 #########################################################################
279 ## MPC8260 Systems (includes 8250, 8255 etc.)
280 #########################################################################
314 #########################################################################
315 ## MPC83xx Systems (includes 8349, etc.)
316 #########################################################################
340 #########################################################################
341 ## MPC85xx Systems (includes 8540, 8560 etc.)
342 #########################################################################
369 #########################################################################
371 #########################################################################
379 #########################################################################
381 #########################################################################
403 #########################################################################
405 #########################################################################
429 #########################################################################
431 #########################################################################
441 #########################################################################
443 #########################################################################
459 #########################################################################
461 #########################################################################
510 #########################################################################
512 #########################################################################
518 #########################################################################
520 #########################################################################
530 #########################################################################
532 #########################################################################
548 #########################################################################
550 #########################################################################
580 #########################################################################
582 #########################################################################
594 #########################################################################
595 ## MIPS Systems (default = big endian)
596 #########################################################################
622 #########################################################################
623 ## MIPS Systems (little endian)
624 #########################################################################
641 #########################################################################
643 #########################################################################
655 #########################################################################
657 #########################################################################
662 ADNPESC1_DNPEVA2_base_32\
670 #########################################################################
672 #########################################################################
682 #########################################################################
683 ## MicroBlaze Systems
684 #########################################################################
692 #########################################################################
694 #########################################################################
699 EB+MCF-EV123_internal \
717 #########################################################################
719 #########################################################################
729 #########################################################################
731 #########################################################################
740 #########################################################################
742 #########################################################################
763 #########################################################################
765 #########################################################################
767 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
769 #-----------------------------------------------------------------------
771 #----- for now, just run PPC by default -----
772 [ $# = 0 ] && set $LIST_ppc
774 #-----------------------------------------------------------------------
779 ${MAKE} distclean >/dev/null
780 ${MAKE} ${target}_config
782 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
783 | tee ${LOG_DIR}/$target.ERR
785 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
786 | tee -a ${LOG_DIR}/$target.MAKELOG
789 #-----------------------------------------------------------------------
795 arm|SA|ARM7|ARM9|ARM10|ARM11|at91|ixp|pxa \
802 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
807 for target in `eval echo '$LIST_'${arg}`
809 build_target ${target}
812 *) build_target ${arg}