summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:56 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:56 +0200
commita4b07792b94e2e13a9b0c8e0847e24d4bfc318d4 (patch)
treed71944ec391186385d4eed7816f9c8a39a57cde9 /fs
parentd299862aaf0ca6fbd6ddd8a7df48551d604f00b9 (diff)
downloadbarebox-a4b07792b94e2e13a9b0c8e0847e24d4bfc318d4.tar.gz
barebox-a4b07792b94e2e13a9b0c8e0847e24d4bfc318d4.tar.xz
svn_rev_465
make fs support mandatory
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