From bcc98c78b80743053b182054b4ed4cc91fc53e8e Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 11 Jan 2007 19:41:13 +0000 Subject: [PATCH] Added fields present in the documentation but not in the header file. --- src/arch/i386/include/multiboot.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/arch/i386/include/multiboot.h b/src/arch/i386/include/multiboot.h index df79225a..9f0b9925 100644 --- a/src/arch/i386/include/multiboot.h +++ b/src/arch/i386/include/multiboot.h @@ -93,6 +93,17 @@ typedef struct multiboot_info } u; unsigned long mmap_length; unsigned long mmap_addr; + unsigned long drives_length; + unsigned long drives_addr; + unsigned long config_table; + unsigned long boot_loader_name; + unsigned long apm_table; + unsigned long vbe_control_info; + unsigned long vbe_mode_info; + unsigned short vbe_mode; + unsigned short vbe_interface_seg; + unsigned short vbe_interface_off; + unsigned short vbe_interface_len; } multiboot_info_t; /* The module structure. */ @@ -117,3 +128,9 @@ typedef struct memory_map } memory_map_t; #endif /* ! ASM */ + +/* + * Local variables: + * c-basic-offset: 2 + * End: + */