Skip to content

Commit

Permalink
omfs: update kbuild to include OMFS
Browse files Browse the repository at this point in the history
Adds OMFS to the fs Kconfig and Makefile

Signed-off-by: Bob Copeland <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
bcopeland authored and torvalds committed Jul 26, 2008
1 parent 36cc410 commit 63ca8ce
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions fs/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1383,6 +1383,19 @@ config MINIX_FS
partition (the one containing the directory /) cannot be compiled as
a module.

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 HPFS_FS
tristate "OS/2 HPFS file system support"
Expand Down
1 change: 1 addition & 0 deletions fs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ obj-$(CONFIG_ADFS_FS) += adfs/
obj-$(CONFIG_FUSE_FS) += fuse/
obj-$(CONFIG_UDF_FS) += udf/
obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/
obj-$(CONFIG_OMFS_FS) += omfs/
obj-$(CONFIG_JFS_FS) += jfs/
obj-$(CONFIG_XFS_FS) += xfs/
obj-$(CONFIG_9P_FS) += 9p/
Expand Down
4 changes: 4 additions & 0 deletions fs/omfs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

obj-$(CONFIG_OMFS_FS) += omfs.o

omfs-y := bitmap.o dir.o file.o inode.o

0 comments on commit 63ca8ce

Please sign in to comment.