Browse Source

target: Fix for incorrect post make instructions

Signed-off-by: Phil Sutter <phil@nwl.cc>
Phil Sutter 7 years ago
parent
commit
6157a0a8b6
2 changed files with 3 additions and 1 deletions
  1. 2 1
      target/x86/Makefile
  2. 1 0
      target/x86_64/Makefile

+ 2 - 1
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

+ 1 - 0
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:"