diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2004-10-01 15:57:23 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2004-10-01 15:57:23 +0000 |
| commit | 92f8f73a931be98d2d23460f6ab1d9aed2cce232 (patch) | |
| tree | ff0b971dae93d95480a34915733bc8614aa840fd | |
| parent | 85a8b887df7fb76ad780c9f909b6ec3ceb76b52a (diff) | |
Notes
| -rw-r--r-- | sys/i386/i386/autoconf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/i386/i386/autoconf.c b/sys/i386/i386/autoconf.c index c4eca30d918e0..fb9d473deb30f 100644 --- a/sys/i386/i386/autoconf.c +++ b/sys/i386/i386/autoconf.c @@ -147,7 +147,11 @@ configure_final(dummy) * when the get-disk-geometry interrupt fails. Skip * drives that have this geometry. */ +#ifdef PC98 + if (bios_geom == 0x4f020f) +#else if (bios_geom == 0x4f010f) +#endif continue; printf(" %x:%08lx ", i, bios_geom); |
