summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-08-06 12:23:04 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-08-06 12:23:32 +0200
commit4d65403fa35b4ffe0e609c465ae3b3fac1ed9b93 (patch)
tree8f3d0a0647fa9473b3096c2a3d3246e7e431f2e7
parent17af9e4754284b146f2050f1300e7fbf8f5f280e (diff)
add initramfsarchive target for aarch64
-rw-r--r--target/aarch64/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/target/aarch64/Makefile b/target/aarch64/Makefile
index 3c04d544a..ac6922bef 100644
--- a/target/aarch64/Makefile
+++ b/target/aarch64/Makefile
@@ -19,6 +19,11 @@ targethelp:
@echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
@echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
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}'
@@ -47,6 +52,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