Messages in this thread Patch in this message |  | | Date | Sun, 7 Jul 1996 22:25:30 +0200 (MESZ) | From | Alexander Ehlert <> | Subject | Error in Kernel v2.0.3 /drivers/scsi/Config.in |
| |
Hi all,
Yesterday i tried to configure the kernel with make xconfig, but it didn't work. There was a little mistake in /drivers/scsi/Config.in This should fix the problem:
-------------8<------------------------8<--------------------------
--- Config.in Sat Jul 6 11:06:37 1996 +++ /usr/src/linux/drivers/scsi/Config.in Sat Jul 6 23:13:13 1996 @@ -57,7 +57,7 @@ bool ' force asynchronous transfer mode' CONFIG_SCSI_NCR53C8XX_FORCE_ASYNCHRONOUS bool ' force synchronous negotiation' CONFIG_SCSI_NCR53C8XX_FORCE_SYNC_NEGO fi - if [ "$CONFIG_SCSI_NCR53C8XX" != "n" -a $CONFIG_EXPERIMENTAL = 'y' ]; then + if [ "$CONFIG_SCSI_NCR53C8XX" != "n" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then bool ' disable master parity checking' CONFIG_SCSI_NCR53C8XX_DISABLE_MPARITY_CHECK bool ' disable scsi parity checking' CONFIG_SCSI_NCR53C8XX_DISABLE_PARITY_CHECK fi -------------------8<----------------------8<-------------------------------- ****************************************************************************** * flames to /dev/null/, mail to alexander.ehlert@student.uni-tuebingen.de * * have fun at http://www.jura.uni-tuebingen.de/~s-eha1/ * ******************************************************************************
|  |