aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/multiboot.c
diff options
context:
space:
mode:
authorMarvin Borner2020-04-18 17:45:30 +0200
committerMarvin Borner2020-04-18 17:45:30 +0200
commit54d848127e2026b710463508b1e6ca89c2b4b068 (patch)
tree73929602c8824bc6fa06236840b6cac664448241 /src/kernel/multiboot.c
parent8d78616a2b80c7625c1aa9ca4733e48a8bf8bf22 (diff)
I don't know HOW I did it, but it works!
I finally fixed the acpi tables with some memory mapping magic and paging allocations, which seems to do the trick. YAY.
Diffstat (limited to 'src/kernel/multiboot.c')
-rw-r--r--src/kernel/multiboot.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/kernel/multiboot.c b/src/kernel/multiboot.c
index 01a2f66..8f20662 100644
--- a/src/kernel/multiboot.c
+++ b/src/kernel/multiboot.c
@@ -24,17 +24,9 @@ void multiboot_parse(uint32_t multiboot_address)
case MULTIBOOT_TAG_TYPE_MODULE:
info("Got modules");
break;
- case MULTIBOOT_TAG_TYPE_BASIC_MEMINFO:
- info("Got memory info");
- memory_info_init((struct multiboot_tag_basic_meminfo *)tag);
- break;
case MULTIBOOT_TAG_TYPE_BOOTDEV:
info("Got boot device");
break;
- case MULTIBOOT_TAG_TYPE_MMAP:
- info("Got memory map");
- memory_mmap_init((struct multiboot_tag_mmap *)tag);
- break;
case MULTIBOOT_TAG_TYPE_VBE:
info("Got VBE info");
break;