summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-13 15:53:20 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-13 15:53:20 +0100
commitf6161af2d6f3e0ed683fe77450aa2f9fe9ec100b (patch)
treedf8b0f79dbc0e1a4fef818d315b80b7e918d5019
parentc1e53e7fb3f2a605d8316606a6a793648458e862 (diff)
parent30c861eecf9e1a6aa3c8b9a381f27dcd21a9afad (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
-rw-r--r--mk/build.mk12
-rw-r--r--target/microblaze/Makefile1
2 files changed, 11 insertions, 2 deletions
diff --git a/mk/build.mk b/mk/build.mk
index 5821e6c20..c4371f477 100644
--- a/mk/build.mk
+++ b/mk/build.mk
@@ -518,7 +518,6 @@ test-framework:
libc="$(LIBC)"; \
fi; \
for libc in $$libc;do \
- mkdir -p $(TOPDIR)/firmware/$(SYSTEM)_$(ARCH)_$$libc; \
( \
for arch in arm microblaze microblazeel mips mipsel mips64 mips64el ppc ppc64 sh4 sh4eb sparc sparc64 i686 x86_64;do \
tarch=$$(echo $$arch|sed -e "s#el##" -e "s#eb##" -e "s#mips64.*#mips#" -e "s#i686#x86#" -e "s#sh4#sh#"); \
@@ -526,9 +525,18 @@ test-framework:
$(GMAKE) prereq && \
$(GMAKE) ARCH=$$tarch SYSTEM=qemu-$$arch LIBC=$$libc FS=archive COLLECTION=test defconfig; \
$(GMAKE) VERBOSE=1 all; if [ $$? -ne 0 ]; then touch .exit; exit 1;fi; \
+ tabi=$$(grep ^ADK_TARGET_ABI= .config|cut -d \" -f 2);\
+ if [ -z $$tabi ];then abi="";else abi=_$$tabi;fi; \
+ if [ -d root ];then rm -rf root;fi; \
+ echo cp -a root_qemu_$${arch}_$${libc}$${abi} root; \
+ cp -a root_qemu_$${arch}_$${libc}$${abi} root; \
+ mkdir -p $(TOPDIR)/firmware/qemu/$$tarch; \
+ tar cJvf $(TOPDIR)/firmware/qemu/$$tarch/root.tar.xz root; \
+ cp $(TOPDIR)/firmware/qemu_$${arch}_$${libc}$${abi}/qemu-$${arch}-archive-kernel \
+ $(TOPDIR)/firmware/qemu/$$tarch/kernel; \
rm .config; \
done; \
- ) 2>&1 | tee $(TOPDIR)/firmware/$(SYSTEM)_$(ARCH)_$$libc/build.log; \
+ ) 2>&1 | tee $(TOPDIR)/firmware/test-framework-build.log; \
if [ -f .exit ];then echo "Bulk build failed!"; break;fi \
done
if [ -f .exit ];then rm .exit;exit 1;fi
diff --git a/target/microblaze/Makefile b/target/microblaze/Makefile
index de528f91e..74f8d3dd0 100644
--- a/target/microblaze/Makefile
+++ b/target/microblaze/Makefile
@@ -57,5 +57,6 @@ endif
endif
ifeq ($(ADK_TARGET_FS),archive)
imageinstall: $(FW_DIR)/$(ROOTFSTARBALL)
+ @cp $(KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
@echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
endif