diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-03-10 22:31:32 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-04-09 11:04:36 +0200 |
commit | 3474716bff31a3d287d0d3813eb7e107cedfa3ef (patch) | |
tree | a9147e6975f19c05791e7886c628f968c2258ef7 /fs/tar/tar.mk | |
parent | 0585241505cfaddc9db6ae92739bdfb5ce5f9794 (diff) |
Coherent naming for .mk files in fs/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'fs/tar/tar.mk')
-rw-r--r-- | fs/tar/tar.mk | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fs/tar/tar.mk b/fs/tar/tar.mk new file mode 100644 index 000000000..4d435cb33 --- /dev/null +++ b/fs/tar/tar.mk @@ -0,0 +1,13 @@ +############################################################# +# +# tar to archive target filesystem +# +############################################################# + +TAR_OPTS:=$(BR2_TARGET_ROOTFS_TAR_OPTIONS) + +define ROOTFS_TAR_CMD + tar -c$(TAR_OPTS)f $$@ -C $(TARGET_DIR) . +endef + +$(eval $(call ROOTFS_TARGET,tar)) |