2012-11-15 00:38:10 -05:00
|
|
|
ENTRY (start)
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2012-12-17 00:35:23 -05:00
|
|
|
. = 0xc0100000;
|
|
|
|
kernel_start = .;
|
2012-12-24 12:44:48 -05:00
|
|
|
kernel_start_phys = . - 0xc0000000;
|
2012-12-17 00:35:23 -05:00
|
|
|
.text ALIGN(0x1000) : AT(ADDR(.text) - 0xc0000000) {
|
|
|
|
*(.text*) *(.rodata*)
|
|
|
|
}
|
|
|
|
.init : AT(ADDR(.init) - 0xc0000000) {
|
2012-11-15 00:38:10 -05:00
|
|
|
early_initcalls_start = .;
|
|
|
|
*(.earlyinitcalls*)
|
|
|
|
early_initcalls_end = .;
|
|
|
|
initcalls_start = .;
|
|
|
|
*(.driversubsysinitcalls*)
|
|
|
|
*(.deviceinitcalls*)
|
|
|
|
initcalls_end = .;
|
2012-12-17 00:35:23 -05:00
|
|
|
*(.init*)
|
|
|
|
}
|
|
|
|
.data ALIGN(0x1000) : AT(ADDR(.data) - 0xc0000000) {
|
|
|
|
*(.data*)
|
|
|
|
}
|
|
|
|
.bss : AT(ADDR(.bss) - 0xc0000000) {
|
|
|
|
*(.bss*) *(COMMON*)
|
2012-11-15 00:38:10 -05:00
|
|
|
}
|
2012-12-17 00:35:23 -05:00
|
|
|
kernel_end = .;
|
2012-12-24 12:44:48 -05:00
|
|
|
kernel_end_phys = . - 0xc0000000;
|
2012-11-15 00:38:10 -05:00
|
|
|
}
|