lkml.org 
[lkml]   [1999]   [Apr]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patches in this message
/
Date
From
SubjectPATCH: Configuration Consistency (small)
Hello,

Attached is two patches, one of which should probably be applied for
consistency in the configurators but neither of which are really truly
necessary. (But I'm always of the opinion that a little bit of consistency
goes a long way towards maintainability. Or something sage like that.)

Patch 1: Changes CONFIG_HFS to rely on CONFIG_EXPERIMENTAL. This is how it
looks like it should be as the configuration option has (experimental)
after it but the check is not made.

Patch 2: Change the CONFIG_HFS line to remove the "experimental" and leave
everything else as is.

Really no-brainers.

Joe

--- Config.in.old Sat Apr 10 23:47:36 1999
+++ Config.in Sat Apr 10 23:49:34 1999
@@ -12,7 +12,9 @@
tristate 'ADFS filesystem support (read only) (EXPERIMENTAL)' CONFIG_ADFS_FS
fi
tristate 'Amiga FFS filesystem support' CONFIG_AFFS_FS
-tristate 'Apple Macintosh filesystem support (experimental)' CONFIG_HFS_FS
+if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+ tristate 'Apple Macintosh filesystem support (EXPERIMENTAL)' CONFIG_HFS_FS
+fi
# msdos filesystems
tristate 'DOS FAT fs support' CONFIG_FAT_FS
dep_tristate ' MSDOS fs support' CONFIG_MSDOS_FS $CONFIG_FAT_FS--- Config.in.old Sat Apr 10 23:47:36 1999
+++ Config.in Sat Apr 10 23:50:50 1999
@@ -12,7 +12,7 @@
tristate 'ADFS filesystem support (read only) (EXPERIMENTAL)' CONFIG_ADFS_FS
fi
tristate 'Amiga FFS filesystem support' CONFIG_AFFS_FS
-tristate 'Apple Macintosh filesystem support (experimental)' CONFIG_HFS_FS
+tristate 'Apple Macintosh filesystem support' CONFIG_HFS_FS
# msdos filesystems
tristate 'DOS FAT fs support' CONFIG_FAT_FS
dep_tristate ' MSDOS fs support' CONFIG_MSDOS_FS $CONFIG_FAT_FS
\
 
 \ /
  Last update: 2005-03-22 13:51    [W:0.048 / U:0.124 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site