2012-09-21 11:52:24 -04:00
|
|
|
ENTRY (start)
|
2012-09-03 23:44:36 -04:00
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2012-12-17 00:36:25 -05:00
|
|
|
. = 0xc0100000;
|
|
|
|
kernel_start = .;
|
|
|
|
.text : {
|
|
|
|
*(.text*) *(.rodata*)
|
|
|
|
}
|
2012-10-04 00:26:35 -04:00
|
|
|
.init : {
|
|
|
|
early_initcalls_start = .;
|
|
|
|
*(.earlyinitcalls*)
|
|
|
|
early_initcalls_end = .;
|
|
|
|
initcalls_start = .;
|
|
|
|
*(.driversubsysinitcalls*)
|
|
|
|
*(.deviceinitcalls*)
|
|
|
|
initcalls_end = .;
|
2012-12-17 00:36:25 -05:00
|
|
|
*(.init*)
|
|
|
|
}
|
|
|
|
.data : {
|
|
|
|
*(.data*)
|
|
|
|
}
|
|
|
|
.bss : {
|
|
|
|
*(.bss*) *(COMMON*)
|
2012-10-04 00:26:35 -04:00
|
|
|
}
|
|
|
|
kernel_end = .;
|
2012-09-03 23:44:36 -04:00
|
|
|
}
|