From 8da2e77b97a743f45ee4662e7861f6161b1fe151 Mon Sep 17 00:00:00 2001 From: hoek Date: Sun, 21 May 2000 05:27:56 +0000 Subject: [PATCH] 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 --- sys/boot/pc98/boot2/boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/boot/pc98/boot2/boot.c b/sys/boot/pc98/boot2/boot.c index d95e2c8defbc..6e05461bb856 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);