From 3474716bff31a3d287d0d3813eb7e107cedfa3ef Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Wed, 10 Mar 2010 22:31:32 +0100 Subject: Coherent naming for .mk files in fs/ Signed-off-by: Thomas Petazzoni --- fs/tar/tar.mk | 13 +++++++++++++ fs/tar/tarroot.mk | 13 ------------- 2 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 fs/tar/tar.mk delete mode 100644 fs/tar/tarroot.mk (limited to 'fs/tar') 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)) diff --git a/fs/tar/tarroot.mk b/fs/tar/tarroot.mk deleted file mode 100644 index 4d435cb33..000000000 --- a/fs/tar/tarroot.mk +++ /dev/null @@ -1,13 +0,0 @@ -############################################################# -# -# 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)) -- cgit v1.2.3