diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-10-24 00:53:31 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-10-24 00:53:31 +0000 |
commit | e77c0c7ab81ed600d79308b0301d30f310359480 (patch) | |
tree | 0bf5075ba3e100f1ce506cc2209e0b90960f5ce0 | |
parent | d071eab9934fd298de3a3853bba0d21ab5b18340 (diff) |
use real boot device
-rw-r--r-- | sys/arch/i386/stand/installboot/installboot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/installboot/installboot.c b/sys/arch/i386/stand/installboot/installboot.c index 1425a9e8a48..523de134077 100644 --- a/sys/arch/i386/stand/installboot/installboot.c +++ b/sys/arch/i386/stand/installboot/installboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: installboot.c,v 1.21 1997/10/22 23:34:41 mickey Exp $ */ +/* $OpenBSD: installboot.c,v 1.22 1997/10/24 00:53:30 mickey Exp $ */ /* $NetBSD: installboot.c,v 1.5 1995/11/17 23:23:50 gwr Exp $ */ /* @@ -156,7 +156,7 @@ main(argc, argv) bios_diskinfo_t di; mib[2] = BIOS_DISKINFO; - mib[3] = 0xa0000004; + mib[3] = biosdev; size = sizeof(di); if (sysctl(mib, 4, &di, &size, NULL, 0) == -1) |