1
0

arch/arm: Fixup formatting to match arch/i386

This commit is contained in:
2012-12-17 00:36:25 -05:00
parent c51062ce87
commit ed52a8af5c
2 changed files with 21 additions and 11 deletions

View File

@ -2,8 +2,11 @@ ENTRY (start)
SECTIONS
{
. = 0x80100000;
.text : { *(.text*) *(.rodata*) }
. = 0xc0100000;
kernel_start = .;
.text : {
*(.text*) *(.rodata*)
}
.init : {
early_initcalls_start = .;
*(.earlyinitcalls*)
@ -12,8 +15,13 @@ SECTIONS
*(.driversubsysinitcalls*)
*(.deviceinitcalls*)
initcalls_end = .;
*(.init*)
}
.data : {
*(.data*)
}
.bss : {
*(.bss*) *(COMMON*)
}
.data : { *(.data*) }
.bss : { *(.bss*) *(COMMON*) }
kernel_end = .;
}