Browse Source

add support for arm nommu boot test

Waldemar Brodkorb 9 years ago
parent
commit
55e9968e01
1 changed files with 9 additions and 3 deletions
  1. 9 3
      embedded-test.sh

+ 9 - 3
embedded-test.sh

@@ -23,7 +23,12 @@
 # ware Foundation.
 
 # uClibc-ng
-arch_list_uclibcng="alpha arcv1 arcv2 arcv1-be arcv2-be arm-nommu armv5 armv7 armv7-thumb2 armeb avr32 bf512-flat bf512-fdpic c6x crisv10 crisv32 frv h8300 lm32 m68k m68k-nommu metag microblazeel microblazebe mips mipssf mipsel mipselsf mips64 mips64n32 mips64n64 mips64el mips64eln32 mips64eln64 nds32le or1k ppc ppcsf sh2 sh3 sh4 sh4eb sparc sparc-leon3 x86 x86_64 xtensa xtensabe xtensa-nommu"
+arch_list_uclibcng="alpha arcv1 arcv2 arcv1-be arcv2-be arm-nommu \
+  armv5 armv7 armv7-thumb2 armeb avr32 bf512-flat bf512-fdpic c6x \
+  crisv10 crisv32 frv h8300 lm32 m68k m68k-nommu metag microblazeel \
+  microblazebe mips mipssf mipsel mipselsf mips64 mips64n32 \
+  mips64n64 mips64el mips64eln32 mips64eln64 nds32le or1k ppc ppcsf \
+  sh2 sh3 sh4 sh4eb sparc sparc-leon3 x86 x86_64 xtensa xtensabe xtensa-nommu"
 
 # musl
 arch_list_musl="aarch64 aarch64be armv5 armv7 armeb microblazeel microblazebe mips mipssf mipsel mipselsf mips64n32 mips64n64 mips64eln32 mips64eln64 or1k ppc ppcsf ppc64 ppc64le sh4 sh4eb x86 x86_64 x86_64_x32"
@@ -306,13 +311,14 @@ get_arch_info() {
     arm-nommu)
       allowed_libc="uclibc-ng"
       runtime_test="uclibc-ng"
-      allowed_tests="toolchain"
-      default_uclibc_ng="ADK_APPLIANCE=test ADK_TARGET_OS=linux ADK_TARGET_ARCH=arm ADK_TARGET_FS=initramfsarchive ADK_TARGET_SYSTEM=qemu-arm-versatilepb-nommu ADK_TARGET_ENDIAN=little"
+      allowed_tests="toolchain boot"
+      default_uclibc_ng="ADK_APPLIANCE=test ADK_TARGET_OS=linux ADK_TARGET_ARCH=arm ADK_TARGET_FS=initramfspiggyback ADK_TARGET_SYSTEM=qemu-arm-versatilepb-nommu ADK_TARGET_ENDIAN=little"
       march=arm-versatilepb-nommu
       qemu=qemu-system-arm
       qemu_machine=versatilepb
       suffix=soft_eabi
       qemu_args="${qemu_args} -cpu arm926 -net user -net nic,model=smc91c111"
+      piggyback=1
       ;;
     arcv1)
       allowed_libc="uclibc-ng newlib"