diff options
author | Freya Murphy <freya@freyacat.org> | 2024-01-30 16:55:15 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-01-30 16:55:15 -0500 |
commit | f7903413688b48b5b0104d3eb3dbd728a5165baf (patch) | |
tree | 70f9f3e80350758c3a44763cf2dfad33c801fad7 /src/arch | |
parent | better mboot (diff) | |
download | corn-f7903413688b48b5b0104d3eb3dbd728a5165baf.tar.gz corn-f7903413688b48b5b0104d3eb3dbd728a5165baf.tar.bz2 corn-f7903413688b48b5b0104d3eb3dbd728a5165baf.zip |
disable wip code
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/amd64/mboot.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arch/amd64/mboot.c b/src/arch/amd64/mboot.c index 68c9383..89fb431 100644 --- a/src/arch/amd64/mboot.c +++ b/src/arch/amd64/mboot.c @@ -1,5 +1,4 @@ #include "mboot.h" -#include "serial.h" #include "shim.h" #include <lib.h> @@ -42,7 +41,7 @@ static uint32_t *read_tag(uint32_t *data, struct boot_info *shim_info) { read_memorymap(shim_info, size, data + 2); break; case MBOOT_SYMBOLS: - // TODO: + shim_info->symbol_table = (void *) (data + 2); break; case MBOOT_XSDP: read_xsdp(shim_info, (char *) (data + 2)); |