From 0585241505cfaddc9db6ae92739bdfb5ce5f9794 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Wed, 10 Mar 2010 22:30:06 +0100 Subject: Move all filesystem generation code to fs/ Signed-off-by: Thomas Petazzoni --- fs/cramfs/Config.in | 6 ++++++ fs/cramfs/cramfs.mk | 22 ++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 fs/cramfs/Config.in create mode 100644 fs/cramfs/cramfs.mk (limited to 'fs/cramfs') diff --git a/fs/cramfs/Config.in b/fs/cramfs/Config.in new file mode 100644 index 000000000..1a4e32647 --- /dev/null +++ b/fs/cramfs/Config.in @@ -0,0 +1,6 @@ +config BR2_TARGET_ROOTFS_CRAMFS + bool "cramfs root filesystem" + help + Build a cramfs root filesystem + + http://sourceforge.net/projects/cramfs/ diff --git a/fs/cramfs/cramfs.mk b/fs/cramfs/cramfs.mk new file mode 100644 index 000000000..ccd316f5d --- /dev/null +++ b/fs/cramfs/cramfs.mk @@ -0,0 +1,22 @@ +############################################################# +# +# Build the cramfs root filesystem image +# +############################################################# +ifeq ($(BR2_ENDIAN),"BIG") +CRAMFS_OPTS=-b +else +CRAMFS_OPTS=-l +endif + +ifneq ($(TARGET_DEVICE_TABLE),) +CRAMFS_OPTS += -D $(TARGET_DEVICE_TABLE) +endif + +define ROOTFS_CRAMFS_CMD + $(HOST_DIR)/usr/bin/mkcramfs -q $(CRAMFS_OPTS) $(TARGET_DIR) $$@ +endef + +ROOTFS_CRAMFS_DEPENDENCIES = host-cramfs + +$(eval $(call ROOTFS_TARGET,cramfs)) \ No newline at end of file -- cgit v1.2.3