Messages in this thread Patch in this message |  | | From | Paul Gortmaker <> | Subject | "Config.in" patch | Date | Tue, 7 May 1996 16:21:02 +1000 (EST) |
| |
When you run "make config" there are two possible silly questions that you can get asked.
1) Support for user misc modules, even though you said N to CONFIG_MODULES
2) Support for iso9660 filesystem, even though you said no to all CD-ROMs
This small patch fixes both of the above.
Paul.
diff -ur /mnt/linux-1398/drivers/char/Config.in linux/drivers/char/Config.in --- /mnt/linux-1398/drivers/char/Config.in Sun May 5 13:00:39 1996 +++ linux/drivers/char/Config.in Mon May 6 18:30:19 1996 @@ -21,7 +21,9 @@ fi tristate 'Microsoft busmouse support' CONFIG_MS_BUSMOUSE tristate 'ATIXL busmouse support' CONFIG_ATIXL_BUSMOUSE -bool 'Support for user misc device modules' CONFIG_UMISC +if [ "$CONFIG_MODULES" = "y" ]; then + bool 'Support for user misc device modules' CONFIG_UMISC +fi bool 'QIC-02 tape support' CONFIG_QIC02_TAPE if [ "$CONFIG_QIC02_TAPE" = "y" ]; then diff -ur /mnt/linux-1398/fs/Config.in linux/fs/Config.in --- /mnt/linux-1398/fs/Config.in Sun May 5 13:00:52 1996 +++ linux/fs/Config.in Mon May 6 19:54:50 1996 @@ -31,7 +31,11 @@ if [ "$CONFIG_IPX" != "n" ]; then tristate 'NCP filesystem support (to mount NetWare volumes)' CONFIG_NCP_FS fi -tristate 'ISO9660 cdrom filesystem support' CONFIG_ISO9660_FS +if [ "$CONFIG_CD_NO_IDESCSI" != "n" ] || \ + [ "$CONFIG_BLK_DEV_IDECD" != "n" ] || \ + [ "$CONFIG_BLK_DEV_SR" != "n" ] ; then + tristate 'ISO9660 cdrom filesystem support' CONFIG_ISO9660_FS +fi tristate 'OS/2 HPFS filesystem support (read only)' CONFIG_HPFS_FS tristate 'System V and Coherent filesystem support' CONFIG_SYSV_FS tristate 'AFFS filesystem support (read only)' CONFIG_AFFS_FS
|  |