Commit 979489d7 authored by David S. Miller's avatar David S. Miller

arch/sparc{,64}/vmlinux.lds.S: Update for init section name changes.

parent 9beb225e
......@@ -38,12 +38,12 @@ SECTIONS
. = ALIGN(4096);
__init_begin = .;
.text.init : { *(.text.init) }
.init.text : { *(.init.text) }
__init_text_end = .;
.data.init : { *(.data.init) }
.init.data : { *(.init.data) }
. = ALIGN(16);
__setup_start = .;
.setup_init : { *(.setup.init) }
.init.setup : { *(.init.setup) }
__setup_end = .;
__initcall_start = .;
.initcall.init : {
......
......@@ -40,11 +40,11 @@ SECTIONS
__stop___kallsyms = .;
. = ALIGN(8192);
__init_begin = .;
.text.init : { *(.text.init) }
.data.init : { *(.data.init) }
.init.text : { *(.init.text) }
.init.data : { *(.init.data) }
. = ALIGN(16);
__setup_start = .;
.setup_init : { *(.setup.init) }
.init.setup : { *(.init.setup) }
__setup_end = .;
__initcall_start = .;
.initcall.init : {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment