]> git.sur5r.net Git - u-boot/blobdiff - MAKEALL
net: smc91111: use mdelay()
[u-boot] / MAKEALL
diff --git a/MAKEALL b/MAKEALL
index c2b52d036cae599c337dad7120215b5fb5aea5c0..c33be1d4b53668cf16a2bada88d3c95c1c9eaec0 100755 (executable)
--- a/MAKEALL
+++ b/MAKEALL
@@ -308,7 +308,6 @@ LIST_SA="$(boards_by_cpu sa1100)"
 LIST_ARM9="$(boards_by_cpu arm920t)    \
        $(boards_by_cpu arm926ejs)      \
        $(boards_by_cpu arm925t)        \
-       omap730p2               \
 "
 
 #########################################################################
@@ -410,6 +409,11 @@ LIST_mips_el="                     \
        ${LIST_xburst_el}       \
        ${LIST_au1xx0_el}       \
 "
+#########################################################################
+## OpenRISC Systems
+#########################################################################
+
+LIST_openrisc="$(boards_by_arch openrisc)"
 
 #########################################################################
 ## x86 Systems
@@ -507,8 +511,12 @@ build_target() {
 
        TOTAL_CNT=$((TOTAL_CNT + 1))
 
-       ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
-                               | tee -a ${LOG_DIR}/$target.MAKELOG
+       OBJS=${BUILD_DIR}/u-boot
+       if [ -e ${BUILD_DIR}/spl/u-boot-spl ]; then
+               OBJS="${OBJS} ${BUILD_DIR}/spl/u-boot-spl"
+       fi
+
+       ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG
 }
 build_targets() {
        for t in "$@" ; do