aboutsummaryrefslogtreecommitdiff
path: root/kernel/multiboot.c
diff options
context:
space:
mode:
authorMarvin Borner2021-04-28 23:12:17 +0200
committerMarvin Borner2021-04-28 23:12:17 +0200
commit04104fc051d44f4f9b3328f29b4be91fa4060f34 (patch)
tree1677c1739c44bd7c7e8722ea00ca3c6b45158c85 /kernel/multiboot.c
parent895a58b1b57a0ae8028576404a90f12e0133cf5f (diff)
Started conversion to Grub (#17)
Yes, the CI won't like this.
Diffstat (limited to 'kernel/multiboot.c')
-rw-r--r--kernel/multiboot.c17
1 files changed, 17 insertions, 0 deletions
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 <assert.h>
+#include <def.h>
+#include <multiboot.h>
+
+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);
+ }
+}