summaryrefslogtreecommitdiff
path: root/target/native
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-11-30 21:47:43 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-11-30 21:47:43 +0100
commit066c41d82e2e3838e274a83902e8691df6b84a4f (patch)
treedf1a91b5c78b4fc2caf2f324571d94d95b4d9fe5 /target/native
parent5265f6b35db3d3cd1af9cb64936ada0e62ed9f32 (diff)
avoid gnu tar features, use cpio instead.
Diffstat (limited to 'target/native')
-rw-r--r--target/native/Makefile6
1 files changed, 6 insertions, 0 deletions
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