diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-07-10 15:00:35 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-07-10 15:00:35 +0200 |
commit | 0a7cdf013e1a9aaeef82eb4809a0674330960b8e (patch) | |
tree | 9a46daa8367d4f51bd05c8d6cabdc8e79475648d /target | |
parent | ed1d132ed9fac094937a2805cc6b347f9bcb0ad8 (diff) |
install kernel for qemu targets
Diffstat (limited to 'target')
-rw-r--r-- | target/arm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/arm/Makefile b/target/arm/Makefile index ea963cd72..78450c488 100644 --- a/target/arm/Makefile +++ b/target/arm/Makefile @@ -52,14 +52,14 @@ imageinstall: kernel-install $(BIN_DIR)/$(ROOTFSTARBALL) endif ifeq ($(ADK_TARGET_FS),archive) imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL) - #@cp $(KERNEL) $(BIN_DIR)/$(TARGET_KERNEL) - #@echo 'The kernel file is: $(BIN_DIR)/${TARGET_KERNEL}' @echo "The RootFS tarball is: $(BIN_DIR)/$(ROOTFSTARBALL)" ifeq ($(ADK_TARGET_SYSTEM_RASPBERRY_PI),y) @echo "Use following command to install it on SD card:" @echo "sudo ./scripts/install-rpi.sh /dev/sdb $(BIN_DIR)/$(ROOTFSTARBALL)" endif ifeq ($(ADK_TARGET_SYSTEM_QEMU_ARM),y) + @cp $(KERNEL) $(BIN_DIR)/$(TARGET_KERNEL) + @echo 'The kernel file is: $(BIN_DIR)/${TARGET_KERNEL}' @echo "Use following command to create a QEMU Image:" @echo "./scripts/create.sh +g qemu-${CPU_ARCH}.img $(BIN_DIR)/$(ROOTFSTARBALL)" @echo "Start qemu with following options:" |