From 27c38d3f6e473d2bf7075fb364db148f22aca203 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 17 Apr 2020 19:55:42 +0200 Subject: Added multiboot smbios table idk why, but grub doesn't seem to find a smbios table in qemu. I tried a local dump of my pc's smbios but this doesn't work either.. *thinking* --- src/kernel/multiboot.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/kernel/multiboot.c') diff --git a/src/kernel/multiboot.c b/src/kernel/multiboot.c index 2c5fa60..2df1d0e 100644 --- a/src/kernel/multiboot.c +++ b/src/kernel/multiboot.c @@ -1,6 +1,7 @@ #include #include #include +#include #include #include @@ -45,6 +46,11 @@ void multiboot_parse(uint32_t multiboot_address) case MULTIBOOT_TAG_TYPE_EFI32: info("Got EFI32"); break; + case MULTIBOOT_TAG_TYPE_SMBIOS: + // GRUB doesn't detect SMBIOS on QEMU! + info("Got SMBIOS table"); + smbios_init((struct multiboot_tag_smbios *)tag); + break; case MULTIBOOT_TAG_TYPE_ACPI_OLD: info("Got ACPI table"); break; -- cgit v1.2.3