2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2000 Free Software Foundation, Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #ifndef MBOOT_MB_HEADER_H
21 #define MBOOT_MB_HEADER_H
26 * MultiBoot Header description
29 struct multiboot_header
{
30 /* Must be MULTIBOOT_MAGIC - see below. */
33 /* Feature flags - see below. */
39 * The above fields plus this one must equal 0 mod 2^32.
43 /* These are only valid if MULTIBOOT_AOUT_KLUDGE is set. */
46 uint32_t load_end_addr
;
47 uint32_t bss_end_addr
;
50 /* These are only valid if MULTIBOOT_VIDEO_MODE is set. */
58 * The entire multiboot_header must be contained
59 * within the first MULTIBOOT_SEARCH bytes of the kernel image.
61 #define MULTIBOOT_SEARCH 8192
63 /* Magic value identifying the multiboot_header. */
64 #define MULTIBOOT_MAGIC 0x1BADB002
67 * Features flags for 'flags'.
68 * If a boot loader sees a flag in MULTIBOOT_MUSTKNOW set
69 * and it doesn't understand it, it must fail.
71 #define MULTIBOOT_MUSTKNOW 0x0000FFFF
73 /* currently unsupported flags... this is a kind of version number. */
74 #define MULTIBOOT_UNSUPPORTED 0x0000FFF8
76 /* Align all boot modules on i386 page (4KB) boundaries. */
77 #define MULTIBOOT_PAGE_ALIGN 0x00000001
79 /* Must pass memory information to OS. */
80 #define MULTIBOOT_MEMORY_INFO 0x00000002
82 /* Must pass video information to OS. */
83 #define MULTIBOOT_VIDEO_MODE 0x00000004
85 /* This flag indicates the use of the address fields in the header. */
86 #define MULTIBOOT_AOUT_KLUDGE 0x00010000
88 #endif /* MBOOT_MB_HEADER_H */