diff options
Diffstat (limited to 'target')
-rw-r--r-- | target/m68k/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/target/m68k/Makefile b/target/m68k/Makefile index 7de6f6001..4c2776a4b 100644 --- a/target/m68k/Makefile +++ b/target/m68k/Makefile @@ -36,6 +36,11 @@ ifeq ($(ADK_TARGET_SYSTEM_ARANYM_M68K),y) @echo 'Ungrab mouse with middle mouse click' endif endif +ifeq ($(ADK_TARGET_FS),initramfsarchive) +targethelp: + @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}' + @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)" +endif ifeq ($(ADK_TARGET_FS),initramfspiggyback) targethelp: @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}' @@ -57,6 +62,9 @@ endif ifeq ($(ADK_TARGET_FS),initramfs) imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp endif +ifeq ($(ADK_TARGET_FS),initramfsarchive) +imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp +endif ifeq ($(ADK_TARGET_FS),initramfspiggyback) imageinstall: createinitramfs targethelp endif |