From 37db7181daf1cc10683de24f6203e595b2ac49bc Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Fri, 29 Jan 2010 20:23:53 +0100 Subject: Copy multiboot information. --- kernel/multiboot.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'kernel/multiboot.h') diff --git a/kernel/multiboot.h b/kernel/multiboot.h index 93a5c30..ffc3d25 100644 --- a/kernel/multiboot.h +++ b/kernel/multiboot.h @@ -8,7 +8,7 @@ typedef struct { uint32_t mod_end; char* string; uint32_t reserved; -} multiboot_module; +} multiboot_module_t; typedef struct { uint32_t flags; @@ -21,7 +21,7 @@ typedef struct { char* cmdline; uint32_t mods_count; - multiboot_module* mods_addr; + multiboot_module_t* mods_addr; union { uint32_t foo[3]; @@ -45,6 +45,8 @@ typedef struct { uint32_t vbe_interface_seg; uint32_t vbe_interface_off; uint32_t vbe_interface_len; -} multiboot_info; +} multiboot_info_t; + +extern multiboot_info_t multiboot_info; #endif -- cgit v1.2.3