From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bob Copeland Subject: [RFC][PATCH 7/7] omfs: kbuild updates Date: Wed, 15 Mar 2006 22:01:45 -0500 Message-ID: <11424781052876-git-send-email-me@bobcopeland.com> References: <11424781052948-git-send-email-me@bobcopeland.com> Reply-To: Bob Copeland Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Cc: Bob Copeland Return-path: Received: from mail.deathmatch.net ([216.200.85.210]:36324 "EHLO mail.deathmatch.net") by vger.kernel.org with ESMTP id S1752184AbWCPDBr (ORCPT ); Wed, 15 Mar 2006 22:01:47 -0500 In-Reply-To: <11424781052948-git-send-email-me@bobcopeland.com> To: linux-fsdevel@vger.kernel.org Sender: linux-fsdevel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org This patch adds the OMFS option to Kconfig, allowing it to be built. --- fs/Kconfig | 14 ++++++++++++++ fs/Makefile | 1 + fs/omfs/Makefile | 7 +++++++ 3 files changed, 22 insertions(+), 0 deletions(-) create mode 100644 fs/omfs/Makefile 8067d5d256c9663c0bf80f1d3f2a2144425fd20f diff --git a/fs/Kconfig b/fs/Kconfig index e9749b0..a9a8101 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -356,6 +356,20 @@ config OCFS2_FS - POSIX ACLs - readpages / writepages (not user visible) +config OMFS_FS + tristate "OMFS fs support (EXPERIMENTAL)" + depends on EXPERIMENTAL + help + This option provides support for the Optimized MPEG File System, an + extent-based filesystem using hashing created by SonicBlue for use + in the ReplayTV digital video recorder, and also used by the Rio + Karma portable music player. If you say Y here, you will be able + to read and write to OMFS partitions. + + To compile this file system support as a module, choose M here: the + module will be called omfs. If unsure, say N. + + config MINIX_FS tristate "Minix fs support" help diff --git a/fs/Makefile b/fs/Makefile index 1db7113..5675690 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -103,3 +103,4 @@ obj-$(CONFIG_HPPFS) += hppfs/ obj-$(CONFIG_DEBUG_FS) += debugfs/ obj-$(CONFIG_CONFIGFS_FS) += configfs/ obj-$(CONFIG_OCFS2_FS) += ocfs2/ +obj-$(CONFIG_OMFS_FS) += omfs/ diff --git a/fs/omfs/Makefile b/fs/omfs/Makefile new file mode 100644 index 0000000..e52bab6 --- /dev/null +++ b/fs/omfs/Makefile @@ -0,0 +1,7 @@ +# +# Makefile for OMFS filesystem +# + +obj-$(CONFIG_OMFS_FS) += omfs.o + +omfs-objs := bitmap.o checksum.o dir.o file.o inode.o -- 1.2.1