diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-01-20 08:15:03 -0500 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2008-01-28 17:21:17 -0500 |
commit | 01ba2bdc6b639764745ff678caf3fb9e5bcd745a (patch) | |
tree | c6e7f1925687485c331189a2d55ff4f2bb0a09df /arch/blackfin | |
parent | 6c5bd235bfd0b92188915465c7dfb377c1a4d451 (diff) |
all archs: consolidate init and exit sections in vmlinux.lds.h
This patch consolidate all definitions of .init.text, .init.data
and .exit.text, .exit.data section definitions in
the generic vmlinux.lds.h.
This is a preparational patch - alone it does not buy
us much good.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/kernel/vmlinux.lds.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/blackfin/kernel/vmlinux.lds.S b/arch/blackfin/kernel/vmlinux.lds.S index 9b75bc83c71f..858722421b40 100644 --- a/arch/blackfin/kernel/vmlinux.lds.S +++ b/arch/blackfin/kernel/vmlinux.lds.S | |||
@@ -91,13 +91,13 @@ SECTIONS | |||
91 | { | 91 | { |
92 | . = ALIGN(PAGE_SIZE); | 92 | . = ALIGN(PAGE_SIZE); |
93 | __sinittext = .; | 93 | __sinittext = .; |
94 | *(.init.text) | 94 | INIT_TEXT |
95 | __einittext = .; | 95 | __einittext = .; |
96 | } | 96 | } |
97 | .init.data : | 97 | .init.data : |
98 | { | 98 | { |
99 | . = ALIGN(16); | 99 | . = ALIGN(16); |
100 | *(.init.data) | 100 | INIT_DATA |
101 | } | 101 | } |
102 | .init.setup : | 102 | .init.setup : |
103 | { | 103 | { |
@@ -198,8 +198,8 @@ SECTIONS | |||
198 | 198 | ||
199 | /DISCARD/ : | 199 | /DISCARD/ : |
200 | { | 200 | { |
201 | *(.exit.text) | 201 | EXIT_TEXT |
202 | *(.exit.data) | 202 | EXIT_DATA |
203 | *(.exitcall.exit) | 203 | *(.exitcall.exit) |
204 | } | 204 | } |
205 | } | 205 | } |