Re: buglet in pre2.0-10

H.J. Lu (hjl@lucon.org)
Sun, 02 Jun 1996 19:42:14 -0700


This is a multi-part message in MIME format.

--------------4B1E55E45F46AE9430939416
Content-Type: text/plain; charset=gb2312
Content-Transfer-Encoding: 7bit

Steve VanDevender wrote:
>
> There appears to be a typo at the end of fs/Config.in; when the
> configuration scripts to expand the double-quoted strings, they barf. I
> got it working by changing the string to be single-quoted:
>
> --- fs/Config.in~ Sat Jun 1 20:26:55 1996
> +++ fs/Config.in Sat Jun 1 20:37:57 1996
> @@ -43,7 +43,7 @@
> fi
> tristate 'UFS filesystem support (read only)' CONFIG_UFS_FS
> if [ "$CONFIG_UFS_FS" != "n" ]; then
> - bool "BSD disklabel (FreeBSD partition tables) support" CONFIG_BSD_DISKLABEL
> - bool "SMD disklabel (Sun partition tables) support" CONFIG_SMD_DISKLABEL
> + bool 'BSD disklabel (FreeBSD partition tables) support' CONFIG_BSD_DISKLABEL
> + bool 'SMD disklabel (Sun partition tables) support' CONFIG_SMD_DISKLABEL
> fi
> endmenu

I don't think it is necessary. I am enclosing a correct
one.

H.J.

--------------4B1E55E45F46AE9430939416
Content-Type: text/plain; charset=gb2312; name="l"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline; filename="l"

Index: Config.in
===================================================================
RCS file: /home/work/cvs/linux/linux/fs/Config.in,v
retrieving revision 1.1.1.11
retrieving revision 1.2
diff -c -r1.1.1.11 -r1.2
*** Config.in 1996/06/02 04:13:11 1.1.1.11
--- Config.in 1996/06/02 08:55:28 1.2
***************
*** 35,41 ****
tristate 'ISO9660 cdrom filesystem support' CONFIG_ISO9660_FS
tristate 'OS/2 HPFS filesystem support (read only)' CONFIG_HPFS_FS
tristate 'System V and Coherent filesystem support' CONFIG_SYSV_FS
! if [ "$CONFIG_EXPERIMENTAL = "y" ]; then
tristate 'Amiga FFS filesystem support (EXPERIMENTAL)' CONFIG_AFFS_FS
if [ "$CONFIG_AFFS_FS" != "n" ]; then
define_bool CONFIG_AMIGA_PARTITION y
--- 35,41 ----
tristate 'ISO9660 cdrom filesystem support' CONFIG_ISO9660_FS
tristate 'OS/2 HPFS filesystem support (read only)' CONFIG_HPFS_FS
tristate 'System V and Coherent filesystem support' CONFIG_SYSV_FS
! if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
tristate 'Amiga FFS filesystem support (EXPERIMENTAL)' CONFIG_AFFS_FS
if [ "$CONFIG_AFFS_FS" != "n" ]; then
define_bool CONFIG_AMIGA_PARTITION y

--------------4B1E55E45F46AE9430939416--