diff options
author | Damien Zammit <damien@zamaudio.com> | 2024-10-27 09:28:41 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-10-27 13:51:49 +0100 |
commit | 1f39d752da4eed39d1b7ebc17b7ce75c3f0a6865 (patch) | |
tree | 619a8fd83147632b6648b04c5d6752f2c7c0c35e /i386/i386at/model_dep.c | |
parent | 7ea3a05d1dd190db757d577757f2e3dba85e3e15 (diff) | |
download | gnumach-1f39d752da4eed39d1b7ebc17b7ce75c3f0a6865.tar.gz gnumach-1f39d752da4eed39d1b7ebc17b7ce75c3f0a6865.tar.bz2 gnumach-1f39d752da4eed39d1b7ebc17b7ce75c3f0a6865.zip |
Expose device(mbinfo) with read access to multiboot raw info
Message-ID: <20241027092828.3162279-1-damien@zamaudio.com>
Diffstat (limited to 'i386/i386at/model_dep.c')
-rw-r--r-- | i386/i386at/model_dep.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/i386/i386at/model_dep.c b/i386/i386at/model_dep.c index a3e9b630..01489353 100644 --- a/i386/i386at/model_dep.c +++ b/i386/i386at/model_dep.c @@ -75,6 +75,7 @@ #include <i386at/int_init.h> #include <i386at/kd.h> #include <i386at/rtc.h> +#include <i386at/mbinfo.h> #include <i386at/model_dep.h> #include <machine/irq.h> @@ -354,6 +355,8 @@ register_boot_data(const struct multiboot_raw_info *mbi) biosmem_register_boot_data(shdr->addr, shdr->addr + shdr->size, FALSE); } } + + mbinfo_register_boot_data(mbi); } #endif /* MACH_HYP */ |