arch/i386: Add multiboot support
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user