summaryrefslogtreecommitdiff
path: root/target/xtensa/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-05-22 18:27:11 -0500
committerWaldemar Brodkorb <wbx@openadk.org>2015-05-22 18:27:34 -0500
commit112afa3ee55070f5f46c7a3fc591afc8be260520 (patch)
treeb792dc2b489af05585cf8fc6ac5675fcdabf9bf3 /target/xtensa/Makefile
parent2ac4acec69505a6bc7100a842a082e320163fd02 (diff)
add basic xilinx kintex7 xtensa support
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