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