From 4d65403fa35b4ffe0e609c465ae3b3fac1ed9b93 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 6 Aug 2014 12:23:04 +0200 Subject: add initramfsarchive target for aarch64 --- target/aarch64/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'target/aarch64') 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 -- cgit v1.2.3