summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/Kconfig7
-rw-r--r--fs/Makefile6
2 files changed, 5 insertions, 8 deletions
diff --git a/fs/Kconfig b/fs/Kconfig
index f12b08162e..0d1c872535 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -1,12 +1,9 @@
-menuconfig FS
- bool "Filesystem support"
-
-if FS
+menu "Filesystem support"
config FS_CRAMFS
bool
select ZLIB
prompt "cramfs support"
-endif
+endmenu
diff --git a/fs/Makefile b/fs/Makefile
index d472401b20..57268cc700 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -1,4 +1,4 @@
obj-$(CONFIG_FS_CRAMFS) += cramfs/
-obj-$(CONFIG_FS) += fs.o
-obj-$(CONFIG_FS) += ramfs.o
-obj-$(CONFIG_FS) += devfs.o
+obj-y += fs.o
+obj-y += ramfs.o
+obj-y += devfs.o