1
0

arch/i386: Add multiboot support

This commit is contained in:
2012-12-24 12:44:48 -05:00
parent 62755b8f38
commit b98aa76334
6 changed files with 287 additions and 9 deletions

View File

@ -4,6 +4,7 @@ SECTIONS
{
. = 0xc0100000;
kernel_start = .;
kernel_start_phys = . - 0xc0000000;
.text ALIGN(0x1000) : AT(ADDR(.text) - 0xc0000000) {
*(.text*) *(.rodata*)
}
@ -24,4 +25,5 @@ SECTIONS
*(.bss*) *(COMMON*)
}
kernel_end = .;
kernel_end_phys = . - 0xc0000000;
}