diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-31 18:22:32 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-31 18:22:53 +0200 |
commit | 0c095815c447305416758ceed6cdf965411a4bf5 (patch) | |
tree | d26f920edb42fcb8ae773a2af8cadf9a7d6a9194 /target/arm/Makefile | |
parent | 2e5369d8206e340754ee64cd9d057748eab0ebab (diff) |
fix qemu spitz emulation, add emulation for terrier
Diffstat (limited to 'target/arm/Makefile')
-rw-r--r-- | target/arm/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/target/arm/Makefile b/target/arm/Makefile index 24ffce9ae..47fa758e0 100644 --- a/target/arm/Makefile +++ b/target/arm/Makefile @@ -19,6 +19,9 @@ QEMU_ARGS:=${ADK_QEMU_ARGS} ifeq ($(ADK_TARGET_QEMU_ARM_MODEL_SPITZ),y) QEMU_ARGS+=-M spitz endif +ifeq ($(ADK_TARGET_QEMU_ARM_MODEL_TERRIER),y) +QEMU_ARGS+=-M terrier +endif ifeq ($(ADK_TARGET_QEMU_ARM_MODEL_VERSATILEPB),y) QEMU_ARGS+=-M versatilepb -net user -net nic,model=smc91c111 endif @@ -33,7 +36,7 @@ endif ifeq ($(ADK_TARGET_FS),archive) targethelp: @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)" -ifeq ($(ADK_TARGET_QEMU),y) +ifeq ($(ADK_TARGET_QEMU_ARM_MODEL_VERSATILEPB),y) @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}' @echo "Use following command to create a QEMU Image:" @echo "./scripts/create.sh qemu-${CPU_ARCH}.img $(FW_DIR)/$(ROOTFSTARBALL)" |