Re: Linux 2.6.8-rc1

From: OGAWA Hirofumi
Date: Mon Jul 12 2004 - 09:03:42 EST


Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> writes:

> > configurable FAT_FS, instead it is internally used only.
>
> If it's for internal use only, perhaps it should not be presented to the user
> and both MSDOS_FS and VFAT_FS should simply select it in Kconfig?

Yes. We have the select now, it should be fixed.

The quick fix are following. I'm going to also remove the
FAT_DEFAULT_xxx before 2.6.8 release.

Thanks.
--
OGAWA Hirofumi <hirofumi@xxxxxxxxxxxxxxxxxx>



Signed-off-by: OGAWA Hirofumi <hirofumi@xxxxxxxxxxxxxxxxxx>
---

fs/Kconfig | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)

diff -puN fs/Kconfig~fat_fs-no-configurable fs/Kconfig
--- linux-2.6.8-rc1/fs/Kconfig~fat_fs-no-configurable 2004-07-12 22:42:31.000000000 +0900
+++ linux-2.6.8-rc1-hirofumi/fs/Kconfig 2004-07-12 22:42:31.000000000 +0900
@@ -552,7 +552,7 @@ endmenu
menu "DOS/FAT/NT Filesystems"

config FAT_FS
- tristate "DOS FAT fs support"
+ tristate
select NLS
help
If you want to use one of the FAT-based file systems (the MS-DOS,
@@ -595,7 +595,7 @@ config FAT_FS

config MSDOS_FS
tristate "MSDOS fs support"
- depends on FAT_FS
+ select FAT_FS
help
This allows you to mount MSDOS partitions of your hard drive (unless
they are compressed; to access compressed MSDOS partitions under
@@ -624,7 +624,7 @@ config MSDOS_FS

config VFAT_FS
tristate "VFAT (Windows-95) fs support"
- depends on FAT_FS
+ select FAT_FS
help
This option provides support for normal Windows file systems with
long filenames. That includes non-compressed FAT-based file systems
_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/