summaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2017-03-08 05:33:25 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2017-03-17 04:00:53 +0100
commit6157a0a8b6189b84f81e6ac35ec638761f43b159 (patch)
tree58decfc2706ef1bdc0c88ea2cfeaf819438a5ace /target
parent803a02691e2f2c93e620039449944569e6aaf025 (diff)
target: Fix for incorrect post make instructions
Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'target')
-rw-r--r--target/x86/Makefile3
-rw-r--r--target/x86_64/Makefile1
2 files changed, 3 insertions, 1 deletions
diff --git a/target/x86/Makefile b/target/x86/Makefile
index 3ff21095a..b47da2b42 100644
--- a/target/x86/Makefile
+++ b/target/x86/Makefile
@@ -90,10 +90,11 @@ endif
ifeq ($(ADK_TARGET_FS),genimage)
targethelp:
@echo "The disk image is: $(FW_DIR)/disk.img"
- @echo "Use following command to install it on SD card:"
ifeq ($(ADK_TARGET_QEMU),y)
+ @echo "Start qemu with following command line:"
@echo 'qemu-system-${QEMU_ARCH} ${QEMU_ARGS} $(FW_DIR)/disk.img'
else
+ @echo "Use following command to install it on SD card:"
@echo 'sudo dd if=$(FW_DIR)/disk.img of=/dev/sdX bs=2048k'
endif
endif
diff --git a/target/x86_64/Makefile b/target/x86_64/Makefile
index e4b53e1b0..654ab0247 100644
--- a/target/x86_64/Makefile
+++ b/target/x86_64/Makefile
@@ -91,6 +91,7 @@ ifeq ($(ADK_TARGET_FS),genimage)
targethelp:
@echo "The disk image is: $(FW_DIR)/disk.img"
ifeq ($(ADK_TARGET_QEMU),y)
+ @echo "Start qemu with following command line:"
@echo 'qemu-system-${QEMU_ARCH} ${QEMU_ARGS} $(FW_DIR)/disk.img'
else
@echo "Use following command to install it on SD card:"