LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH 7/7] omfs: update kbuild to include OMFS
@ 2008-04-12 22:58 Bob Copeland
  2008-04-13  8:10 ` Christoph Hellwig
  0 siblings, 1 reply; 2+ messages in thread
From: Bob Copeland @ 2008-04-12 22:58 UTC (permalink / raw)
  To: linux-kernel; +Cc: linux-fsdevel, akpm, Bob Copeland

    Adds OMFS to the fs Kconfig and Makefile

    Signed-off-by: Bob Copeland <me@bobcopeland.com>
---
 fs/Kconfig       |   13 +++++++++++++
 fs/Makefile      |    1 +
 fs/omfs/Makefile |    7 +++++++
 3 files changed, 21 insertions(+), 0 deletions(-)
 create mode 100644 fs/omfs/Makefile

diff --git a/fs/Kconfig b/fs/Kconfig
index c509123..5dd8f94 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -1418,6 +1418,19 @@ config HPFS_FS
 	  To compile this file system support as a module, choose M here: the
 	  module will be called hpfs.  If unsure, say N.
 
+config OMFS_FS
+	tristate "SonicBlue Optimized MPEG File System support"
+	depends on BLOCK
+	select CRC_ITU_T
+	help
+	  This is the proprietary file system used by the Rio Karma music
+	  player and ReplayTV DVR.  Despite the name, this filesystem is not
+	  more efficient than a standard FS for MPEG files, in fact likely
+	  the opposite is true.  Say Y if you have either of these devices 
+	  and wish to mount its disk.
+
+	  To compile this file system support as a module, choose M here: the
+	  module will be called omfs.  If unsure, say N.
 
 config QNX4FS_FS
 	tristate "QNX4 file system support (read only)"
diff --git a/fs/Makefile b/fs/Makefile
index 1e7a11b..68decdd 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -119,3 +119,4 @@ obj-$(CONFIG_HPPFS)		+= hppfs/
 obj-$(CONFIG_DEBUG_FS)		+= debugfs/
 obj-$(CONFIG_OCFS2_FS)		+= ocfs2/
 obj-$(CONFIG_GFS2_FS)           += gfs2/
+obj-$(CONFIG_OMFS_FS)		+= omfs/
diff --git a/fs/omfs/Makefile b/fs/omfs/Makefile
new file mode 100644
index 0000000..d17d9ac
--- /dev/null
+++ b/fs/omfs/Makefile
@@ -0,0 +1,7 @@
+#
+# Makefile for the Linux omfs filesystem routines.
+#
+
+obj-$(CONFIG_OMFS_FS) += omfs.o
+
+omfs-objs := bitmap.o checksum.o dir.o file.o inode.o
-- 
1.5.4.2



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 7/7] omfs: update kbuild to include OMFS
  2008-04-12 22:58 [PATCH 7/7] omfs: update kbuild to include OMFS Bob Copeland
@ 2008-04-13  8:10 ` Christoph Hellwig
  0 siblings, 0 replies; 2+ messages in thread
From: Christoph Hellwig @ 2008-04-13  8:10 UTC (permalink / raw)
  To: Bob Copeland; +Cc: linux-kernel, linux-fsdevel, akpm

> --- /dev/null
> +++ b/fs/omfs/Makefile
> @@ -0,0 +1,7 @@
> +#
> +# Makefile for the Linux omfs filesystem routines.
> +#
> +
> +obj-$(CONFIG_OMFS_FS) += omfs.o
> +
> +omfs-objs := bitmap.o checksum.o dir.o file.o inode.o


No need to comment a trivial makefile.  Also please use omfs-y +=
instead of omfs-objs :=

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-04-13  8:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-04-12 22:58 [PATCH 7/7] omfs: update kbuild to include OMFS Bob Copeland
2008-04-13  8:10 ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).