diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2004-11-13 13:02:19 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2004-11-13 13:02:19 +0000 |
| commit | 6385222110263958e7af151ecfcd4fa5768a9506 (patch) | |
| tree | 8b8bfb1687e63d40d1826ced7410a2d3d4ebb9f7 /sys/boot | |
| parent | 4c2707840501d6794d08611d5c8a3dcaf2c8d723 (diff) | |
Notes
Diffstat (limited to 'sys/boot')
| -rw-r--r-- | sys/boot/pc98/loader/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/boot/pc98/loader/main.c b/sys/boot/pc98/loader/main.c index 522908b36d0d..123caa92c26e 100644 --- a/sys/boot/pc98/loader/main.c +++ b/sys/boot/pc98/loader/main.c @@ -130,6 +130,10 @@ main(void) if (devsw[i]->dv_init != NULL) (devsw[i]->dv_init)(); printf("BIOS %dkB/%dkB available memory\n", bios_basemem / 1024, bios_extmem / 1024); + if (initial_bootinfo != NULL) { + initial_bootinfo->bi_basemem = bios_basemem / 1024; + initial_bootinfo->bi_extmem = bios_extmem / 1024; + } #ifndef PC98 /* detect ACPI for future reference */ |
