Messages in this thread Patch in this message |  | | Date | Fri, 1 Jan 1999 22:51:59 +0000 (GMT) | | From | Riley Williams <> | | Subject | Config file bugfix |
| |
Hi Linus, Alan.
There appears to be a sequencing error in the SCSI section of the configuration scripts, since if one selects "Generic NCR5380/53c400 SCSI support", it's dependant options are displayed after the IOMEGA driver, not after the option in question.
This is simply a case of moving some lines around, and the enclosed patch fixes this...
Best wishes from Riley.
--- * ftp://ps.cus.umist.ac.uk/pub/rhw/Linux * http://ps.cus.umist.ac.uk/~rhw/kernel.versions.html --- linux/drivers/scsi/Config.in.old Fri Dec 18 17:47:38 1998 +++ linux/drivers/scsi/Config.in Fri Jan 1 22:47:40 1999 @@ -54,29 +54,29 @@ if [ "$CONFIG_MCA" = "y" ]; then if [ "$CONFIG_SCSI" = "y" ]; then bool 'Future Domain MCS-600/700 SCSI support' CONFIG_SCSI_FD_MCS fi fi dep_tristate 'GDT SCSI Disk Array Controller support' CONFIG_SCSI_GDTH $CONFIG_SCSI dep_tristate 'Generic NCR5380/53c400 SCSI support' CONFIG_SCSI_GENERIC_NCR5380 $CONFIG_SCSI -if [ "$CONFIG_PARPORT" != "n" ]; then - dep_tristate 'IOMEGA Parallel Port ZIP drive SCSI support' CONFIG_SCSI_PPA $CONFIG_SCSI $CONFIG_PARPORT - if [ "$CONFIG_SCSI_PPA" != "n" ]; then - bool ' Pedantic EPP-checking' CONFIG_SCSI_PPA_HAVE_PEDANTIC - fi - dep_tristate 'IOMEGA ZIP Plus drive SCSI support' CONFIG_SCSI_IMM $CONFIG_SCSI $CONFIG_PARPORT -fi if [ "$CONFIG_SCSI_GENERIC_NCR5380" != "n" ]; then bool ' Enable NCR53c400 extensions' CONFIG_SCSI_GENERIC_NCR53C400 choice 'NCR5380/53c400 mapping method (use Port for T130B)' \ "Port CONFIG_SCSI_G_NCR5380_PORT \ Memory CONFIG_SCSI_G_NCR5380_MEM" Port fi if [ "$CONFIG_PCI" = "y" ]; then dep_tristate 'Initio 9100U(W) support' CONFIG_SCSI_INITIO $CONFIG_SCSI fi +if [ "$CONFIG_PARPORT" != "n" ]; then + dep_tristate 'IOMEGA Parallel Port ZIP drive SCSI support' CONFIG_SCSI_PPA $CONFIG_SCSI $CONFIG_PARPORT + if [ "$CONFIG_SCSI_PPA" != "n" ]; then + bool ' Pedantic EPP-checking' CONFIG_SCSI_PPA_HAVE_PEDANTIC + fi + dep_tristate 'IOMEGA ZIP Plus drive SCSI support' CONFIG_SCSI_IMM $CONFIG_SCSI $CONFIG_PARPORT +fi dep_tristate 'NCR53c406a SCSI support' CONFIG_SCSI_NCR53C406A $CONFIG_SCSI if [ "$CONFIG_PCI" = "y" ]; then dep_tristate 'NCR53c7,8xx SCSI support' CONFIG_SCSI_NCR53C7xx $CONFIG_SCSI if [ "$CONFIG_SCSI_NCR53C7xx" != "n" ]; then bool ' always negotiate synchronous transfers' CONFIG_SCSI_NCR53C7xx_sync bool ' allow FAST-SCSI [10MHz]' CONFIG_SCSI_NCR53C7xx_FAST |  |