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 #########################################################################
65 #########################################################################
67 #########################################################################
73 #########################################################################
75 #########################################################################
154 #########################################################################
156 #########################################################################
247 #########################################################################
249 #########################################################################
256 #########################################################################
258 #########################################################################
282 #########################################################################
283 ## MPC8260 Systems (includes 8250, 8255 etc.)
284 #########################################################################
318 #########################################################################
319 ## MPC83xx Systems (includes 8349, etc.)
320 #########################################################################
344 #########################################################################
345 ## MPC85xx Systems (includes 8540, 8560 etc.)
346 #########################################################################
373 #########################################################################
375 #########################################################################
383 #########################################################################
385 #########################################################################
407 #########################################################################
409 #########################################################################
433 #########################################################################
435 #########################################################################
445 #########################################################################
447 #########################################################################
463 #########################################################################
465 #########################################################################
503 #########################################################################
505 #########################################################################
511 #########################################################################
513 #########################################################################
523 #########################################################################
525 #########################################################################
541 #########################################################################
543 #########################################################################
572 #########################################################################
574 #########################################################################
587 #########################################################################
588 ## MIPS Systems (default = big endian)
589 #########################################################################
615 #########################################################################
616 ## MIPS Systems (little endian)
617 #########################################################################
634 #########################################################################
636 #########################################################################
648 #########################################################################
650 #########################################################################
655 ADNPESC1_DNPEVA2_base_32\
663 #########################################################################
665 #########################################################################
675 #########################################################################
676 ## MicroBlaze Systems
677 #########################################################################
685 #########################################################################
687 #########################################################################
692 EB+MCF-EV123_internal \
710 #########################################################################
712 #########################################################################
722 #########################################################################
724 #########################################################################
733 #########################################################################
735 #########################################################################
756 #########################################################################
758 #########################################################################
760 LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2"
762 #-----------------------------------------------------------------------
764 #----- for now, just run PPC by default -----
765 [ $# = 0 ] && set $LIST_ppc
767 #-----------------------------------------------------------------------
772 ${MAKE} distclean >/dev/null
773 ${MAKE} ${target}_config
775 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
776 | tee ${LOG_DIR}/$target.ERR
778 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
779 | tee -a ${LOG_DIR}/$target.MAKELOG
782 #-----------------------------------------------------------------------
788 arm|SA|ARM7|ARM9|ARM10|ARM11|at91|ixp|pxa \
795 |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
800 for target in `eval echo '$LIST_'${arg}`
802 build_target ${target}
805 *) build_target ${arg}