arch/arm: Fixup formatting to match arch/i386
This commit is contained in:
@ -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 = .;
|
||||
}
|
||||
|
Reference in New Issue
Block a user