Error to check in txtsetup.oem
An error of incorrect case in entries in the txtsetup.oem file can cause mass storage drivers not to be displayed in the driver selection GUI.
The entries in txtsetup.oem are case sensitive — specifically, the case of entries in the [Defaults] section must match the case of entries in the [Files] section.
For example, consider the following incorrectly formatted txtsetup.oem:
d1 = "Smart Array 5x and 6x Storport Driver Diskette",\TXTSETUP.OEM,\
[Defaults]
SCSI = 5x6x
[SCSI]
5x6x = "Storport Driver for Smart Array 5x and 6x Controllers"
[Files.scsi.5x6x]
driver = d1,HpCISSs.sys,HpCISSs
inf = d1,HpCISSs.inf
catalog = d1,HpCISSs.cat
[Config.HpCISSs]
value = "",tag,REG_DWORD,103
value = Parameters\PnpInterface,5,REG_DWORD,1
The error here is that in the [Defaults] section, SCSI is in uppercase:
SCSI = 5x6x
However, in the [Files] section, SCSI is in lowercase:
[Files.scsi.5x6x]
To correct this error, you could change the [Files] entry to uppercase:
[Files.SCSI.5x6x]
You could also change the [Defaults] entry to lowercase — the point is that the case of each character must be the same in [Defaults] and [Files].