summaryrefslogtreecommitdiff
path: root/target/xtensa/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'target/xtensa/Makefile')
-rw-r--r--target/xtensa/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/target/xtensa/Makefile b/target/xtensa/Makefile
index 19f0a28f0..756bb020f 100644
--- a/target/xtensa/Makefile
+++ b/target/xtensa/Makefile
@@ -52,6 +52,11 @@ ifeq ($(ADK_TARGET_QEMU),y)
@echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
endif
endif
+ifeq ($(ADK_TARGET_FS),nfsroot)
+targethelp:
+ @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
+ @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
+endif
kernel-install:
@cp $(KERNEL) $(FW_DIR)/${TARGET_KERNEL}
@@ -69,3 +74,6 @@ endif
ifeq ($(ADK_TARGET_FS),initramfspiggyback)
imageinstall: createinitramfs targethelp
endif
+ifeq ($(ADK_TARGET_FS),nfsroot)
+imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
+endif