Browse Source

exclude aarch64 from test-framework, set 3.13.11 as default kernel

Waldemar Brodkorb 10 years ago
parent
commit
0456a5ee27
2 changed files with 2 additions and 1 deletions
  1. 1 0
      Config.in
  2. 1 1
      mk/build.mk

+ 1 - 0
Config.in

@@ -106,6 +106,7 @@ depends on !ADK_TOOLCHAIN_ONLY && !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_
 
 choice
 prompt "Kernel Version"
+default ADK_KERNEL_VERSION_3_13_11
 
 config ADK_KERNEL_VERSION_3_14_1
 	prompt "3.14.1"

+ 1 - 1
mk/build.mk

@@ -502,7 +502,7 @@ test-framework:
 	for libc in $$libc;do \
 		( \
 			mkdir -p $(TOPDIR)/firmware/; \
-			for arch in $$(grep -v m68k target/tarch.lst|xargs);do \
+			for arch in $$(grep -v "\(m68k\|aarch64\)" toolchain/$$libc/tarch.lst|xargs);do \
 				tarch=$$(echo $$arch|sed -e "s#el##" -e "s#eb##" -e "s#mips64.*#mips#" -e "s#i686#x86#" -e "s#sh4#sh#" -e "s#hf##" -e "s#x86_64.*#x86_64#"); \
 				arch=$$(echo $$arch|sed -e 's#x86$$#i686#'); \
 				echo === building qemu-$$arch for $$libc with $$tarch on $$(date); \