diff options
| author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2008-03-08 23:36:25 +0000 |
|---|---|---|
| committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2008-03-08 23:36:25 +0000 |
| commit | 099b2ba8328a53786470c287c8a6f3c84fa9042e (patch) | |
| tree | 3116817741feda79c7344cf4be6e142bfc7b93e8 | |
| parent | 5f08232e7adab81c8cf3fa2dccccc4000fd89063 (diff) | |
Notes
| -rw-r--r-- | sys/boot/i386/libi386/biosdisk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/i386/libi386/biosdisk.c b/sys/boot/i386/libi386/biosdisk.c index bd4d9d7fd0fe..c673e10fef77 100644 --- a/sys/boot/i386/libi386/biosdisk.c +++ b/sys/boot/i386/libi386/biosdisk.c @@ -254,7 +254,7 @@ bd_int13probe(struct bdinfo *bd) ((v86.ebx & 0xffff) == 0xaa55) && /* signature */ (v86.ecx & 0x1)) { /* packets mode ok */ bd->bd_flags |= BD_MODEEDD1; - if((v86.eax & 0xff00) > 0x300) + if((v86.eax & 0xff00) >= 0x3000) bd->bd_flags |= BD_MODEEDD3; } return(1); |
