diff options
author | hoek <hoek@FreeBSD.org> | 2000-05-21 05:27:56 +0000 |
---|---|---|
committer | hoek <hoek@FreeBSD.org> | 2000-05-21 05:27:56 +0000 |
commit | 025d68f847fe37823d75281f4ed0e0e4836efd36 (patch) | |
tree | 289c8e5ad1fc3890e2295a7841ae27033c489c72 /sys/boot/pc98 | |
parent | e6e653134b60dfde02617f37dcd4343b8efabc6c (diff) | |
download | FreeBSD-src-025d68f847fe37823d75281f4ed0e0e4836efd36.zip FreeBSD-src-025d68f847fe37823d75281f4ed0e0e4836efd36.tar.gz |
Make this compile in case anyone ever wants to use the PC98 booter
on an IBM machine. This fix matches i386/boot2/boot.c.
PR: kern/7903
Diffstat (limited to 'sys/boot/pc98')
-rw-r--r-- | sys/boot/pc98/boot2/boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/pc98/boot2/boot.c b/sys/boot/pc98/boot2/boot.c index d95e2c8..6e05461 100644 --- a/sys/boot/pc98/boot2/boot.c +++ b/sys/boot/pc98/boot2/boot.c @@ -95,11 +95,11 @@ boot(int drive) if (*(unsigned char*)V(0xA155d) & (1 << ret)) { bootinfo.bi_bios_geom[ret] = get_diskinfo(ret + 0x80); } + } #else /* IBM-PC */ for(ret = 0; ret < N_BIOS_GEOM; ret ++) bootinfo.bi_bios_geom[ret] = get_diskinfo(ret + 0x80); #endif /* PC98 */ - } bootinfo.bi_basemem = memsize(0); bootinfo.bi_extmem = memsize(1); |