diff --git a/fs/Kconfig b/fs/Kconfig index f12b081..0d1c872 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 d472401..57268cc 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