diff options
author | Boaz Harrosh <bharrosh@panasas.com> | 2008-12-15 12:53:08 +0200 |
---|---|---|
committer | Boaz Harrosh <bharrosh@panasas.com> | 2009-03-31 19:44:40 +0300 |
commit | 0d8fe329a80714e0f729ae48cba8d64cbe5701cb (patch) | |
tree | cebcf5e99a82ea3ee36edb0548e703d743260909 /fs | |
parent | 214c8adb87b880690b103e86baffc46f8288fa62 (diff) |
fs: Add exofs to Kernel build
- Add exofs to fs/Kconfig under "menu 'Miscellaneous filesystems'"
- Add exofs to fs/Makefile
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/Kconfig | 2 | ||||
-rw-r--r-- | fs/Makefile | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/fs/Kconfig b/fs/Kconfig index cef8b18ceaa..ae3b34a2ea6 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -169,6 +169,8 @@ source "fs/romfs/Kconfig" source "fs/sysv/Kconfig" source "fs/ufs/Kconfig" +source "fs/exofs/Kconfig" + endif # MISC_FILESYSTEMS menuconfig NETWORK_FILESYSTEMS diff --git a/fs/Makefile b/fs/Makefile index 6e82a307bcd..ba77ef2d293 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -120,3 +120,4 @@ obj-$(CONFIG_DEBUG_FS) += debugfs/ obj-$(CONFIG_OCFS2_FS) += ocfs2/ obj-$(CONFIG_BTRFS_FS) += btrfs/ obj-$(CONFIG_GFS2_FS) += gfs2/ +obj-$(CONFIG_EXOFS_FS) += exofs/ |