From a4b07792b94e2e13a9b0c8e0847e24d4bfc318d4 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 5 Jul 2007 18:01:56 +0200 Subject: svn_rev_465 make fs support mandatory --- fs/Kconfig | 7 ++----- fs/Makefile | 6 +++--- 2 files changed, 5 insertions(+), 8 deletions(-) (limited to 'fs') 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 -- cgit v1.2.3