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/cpio/cpio.mk | 18 ++++++++++++++++++ fs/cpio/cpioroot.mk | 18 ------------------ 2 files changed, 18 insertions(+), 18 deletions(-) create mode 100644 fs/cpio/cpio.mk delete mode 100644 fs/cpio/cpioroot.mk (limited to 'fs/cpio') diff --git a/fs/cpio/cpio.mk b/fs/cpio/cpio.mk new file mode 100644 index 000000000..ab7d54618 --- /dev/null +++ b/fs/cpio/cpio.mk @@ -0,0 +1,18 @@ +############################################################# +# +# cpio to archive target filesystem +# +############################################################# + +define ROOTFS_CPIO_INIT_SYMLINK + rm -f $(TARGET_DIR)/init + ln -s sbin/init $(TARGET_DIR)/init +endef + +ROOTFS_CPIO_PRE_GEN_HOOKS += ROOTFS_CPIO_INIT_SYMLINK + +define ROOTFS_CPIO_CMD + cd $(TARGET_DIR) && find . | cpio --quiet -o -H newc > $$@ +endef + +$(eval $(call ROOTFS_TARGET,cpio)) \ No newline at end of file diff --git a/fs/cpio/cpioroot.mk b/fs/cpio/cpioroot.mk deleted file mode 100644 index ab7d54618..000000000 --- a/fs/cpio/cpioroot.mk +++ /dev/null @@ -1,18 +0,0 @@ -############################################################# -# -# cpio to archive target filesystem -# -############################################################# - -define ROOTFS_CPIO_INIT_SYMLINK - rm -f $(TARGET_DIR)/init - ln -s sbin/init $(TARGET_DIR)/init -endef - -ROOTFS_CPIO_PRE_GEN_HOOKS += ROOTFS_CPIO_INIT_SYMLINK - -define ROOTFS_CPIO_CMD - cd $(TARGET_DIR) && find . | cpio --quiet -o -H newc > $$@ -endef - -$(eval $(call ROOTFS_TARGET,cpio)) \ No newline at end of file -- cgit v1.2.3