diff options
Diffstat (limited to 'target')
-rw-r--r-- | target/Config.in | 3 | ||||
-rw-r--r-- | target/native/Makefile | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/target/Config.in b/target/Config.in index d92d2b0ef..55233a792 100644 --- a/target/Config.in +++ b/target/Config.in @@ -578,7 +578,8 @@ config ADK_TARGET_ROOTFS_NFSROOT ADK_LINUX_MIPS_BRCM || \ ADK_LINUX_MIPS_RB532 || \ ADK_LINUX_MIPS_RB4XX || \ - ADK_LINUX_MIPS_AG241 + ADK_LINUX_MIPS_AG241 || \ + ADK_LINUX_NATIVE select ADK_KERNEL_SUNRPC select ADK_KERNEL_NFS_FS select ADK_KERNEL_NFS_V3 diff --git a/target/native/Makefile b/target/native/Makefile index 0904cb491..d2ddee919 100644 --- a/target/native/Makefile +++ b/target/native/Makefile @@ -29,3 +29,9 @@ ifeq ($(FS),archive) imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL) @echo "The RootFS tarball is: $(BIN_DIR)/$(ROOTFSTARBALL)" endif +ifeq ($(FS),nfsroot) +imageinstall: $(BIN_DIR)/$(ROOTFSUSERTARBALL) + @cp $(KERNEL) $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel + @echo 'The kernel file is: ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel' + @echo 'The nfs root tarball is: ${BIN_DIR}/${ROOTFSUSERTARBALL}' +endif |