From 04104fc051d44f4f9b3328f29b4be91fa4060f34 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 28 Apr 2021 23:12:17 +0200 Subject: Started conversion to Grub (#17) Yes, the CI won't like this. --- kernel/multiboot.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 kernel/multiboot.c (limited to 'kernel/multiboot.c') diff --git a/kernel/multiboot.c b/kernel/multiboot.c new file mode 100644 index 0000000..eafe4c5 --- /dev/null +++ b/kernel/multiboot.c @@ -0,0 +1,17 @@ +// MIT License, Copyright (c) 2021 Marvin Borner + +#include +#include +#include + +static struct multiboot_info *info = NULL; + +void multiboot_init(u32 magic, u32 addr) +{ + assert(magic == MULTIBOOT_MAGIC); + info = (void *)addr; + + if (info->flags & MULTIBOOT_INFO_CMDLINE) { + printf("CMDLINE: '%s'\n", info->cmdline); + } +} -- cgit v1.2.3