diff options
author | Richard Braun <rbraun@sceen.net> | 2016-08-12 21:22:46 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2016-08-12 21:27:11 +0200 |
commit | 34cfd8b3111b8085f566a68d7b39b0b9e90193d4 (patch) | |
tree | 2273422eb737a2e5a5984f5deaa8c2968c2db2fd /i386/i386at/boothdr.S | |
parent | 5dd4f67522ad0d49a2cecdb9b109251f546d4dd1 (diff) | |
download | gnumach-34cfd8b3111b8085f566a68d7b39b0b9e90193d4.tar.gz gnumach-34cfd8b3111b8085f566a68d7b39b0b9e90193d4.tar.bz2 gnumach-34cfd8b3111b8085f566a68d7b39b0b9e90193d4.zip |
i386: request the boot loader to page-align modules
* i386/i386at/boothdr.S (MULTIBOOT_FLAGS): Set LSB bit.
Diffstat (limited to 'i386/i386at/boothdr.S')
-rw-r--r-- | i386/i386at/boothdr.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/i386/i386at/boothdr.S b/i386/i386at/boothdr.S index 567851e4..9339cb91 100644 --- a/i386/i386at/boothdr.S +++ b/i386/i386at/boothdr.S @@ -17,9 +17,9 @@ _start: /* MultiBoot header - see multiboot.h. */ #define MULTIBOOT_MAGIC 0x1BADB002 #ifdef __ELF__ -#define MULTIBOOT_FLAGS 0x00000002 +#define MULTIBOOT_FLAGS 0x00000003 #else /* __ELF__ */ -#define MULTIBOOT_FLAGS 0x00010002 +#define MULTIBOOT_FLAGS 0x00010003 #endif /* __ELF__ */ P2ALIGN(2) boot_hdr: |