diff options
Diffstat (limited to 'arch/um/kernel')
-rw-r--r-- | arch/um/kernel/dyn.lds.S | 4 | ||||
-rw-r--r-- | arch/um/kernel/uml.lds.S | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/arch/um/kernel/dyn.lds.S b/arch/um/kernel/dyn.lds.S index 3866f4960f04..26090b7f323e 100644 --- a/arch/um/kernel/dyn.lds.S +++ b/arch/um/kernel/dyn.lds.S | |||
@@ -17,7 +17,7 @@ SECTIONS | |||
17 | __init_begin = .; | 17 | __init_begin = .; |
18 | .init.text : { | 18 | .init.text : { |
19 | _sinittext = .; | 19 | _sinittext = .; |
20 | *(.init.text) | 20 | INIT_TEXT |
21 | _einittext = .; | 21 | _einittext = .; |
22 | } | 22 | } |
23 | 23 | ||
@@ -84,7 +84,7 @@ SECTIONS | |||
84 | 84 | ||
85 | #include "asm/common.lds.S" | 85 | #include "asm/common.lds.S" |
86 | 86 | ||
87 | init.data : { *(.init.data) } | 87 | init.data : { INIT_DATA } |
88 | 88 | ||
89 | /* Ensure the __preinit_array_start label is properly aligned. We | 89 | /* Ensure the __preinit_array_start label is properly aligned. We |
90 | could instead move the label definition inside the section, but | 90 | could instead move the label definition inside the section, but |
diff --git a/arch/um/kernel/uml.lds.S b/arch/um/kernel/uml.lds.S index 13df191e2b41..5828c1d54505 100644 --- a/arch/um/kernel/uml.lds.S +++ b/arch/um/kernel/uml.lds.S | |||
@@ -23,7 +23,7 @@ SECTIONS | |||
23 | __init_begin = .; | 23 | __init_begin = .; |
24 | .init.text : { | 24 | .init.text : { |
25 | _sinittext = .; | 25 | _sinittext = .; |
26 | *(.init.text) | 26 | INIT_TEXT |
27 | _einittext = .; | 27 | _einittext = .; |
28 | } | 28 | } |
29 | . = ALIGN(4096); | 29 | . = ALIGN(4096); |
@@ -48,7 +48,7 @@ SECTIONS | |||
48 | 48 | ||
49 | #include "asm/common.lds.S" | 49 | #include "asm/common.lds.S" |
50 | 50 | ||
51 | init.data : { *(init.data) } | 51 | init.data : { INIT_DATA } |
52 | .data : | 52 | .data : |
53 | { | 53 | { |
54 | . = ALIGN(KERNEL_STACK_SIZE); /* init_task */ | 54 | . = ALIGN(KERNEL_STACK_SIZE); /* init_task */ |