1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-08 17:22:50 +00:00

- Allow a higher value for the number of heads. Its better to do this and allow

a few bad systems to run than to be completely strict about it.
This commit is contained in:
Ulf Lilleengen 2009-06-17 06:47:05 +00:00
parent ea32a6995b
commit 7ca3f45cd2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=194334

View File

@ -36,7 +36,7 @@ Sanitize_Bios_Geom(struct disk *disk)
if (disk->bios_cyl >= 65536)
sane = 0;
if (disk->bios_hd >= 256)
if (disk->bios_hd > 256)
sane = 0;
#ifdef PC98
if (disk->bios_sect >= 256)