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/cris/arch-v10 | |
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/cris/arch-v10')
-rw-r--r-- | arch/cris/arch-v10/vmlinux.lds.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/cris/arch-v10/vmlinux.lds.S b/arch/cris/arch-v10/vmlinux.lds.S index 97a7876ed681..93c9f0ea286b 100644 --- a/arch/cris/arch-v10/vmlinux.lds.S +++ b/arch/cris/arch-v10/vmlinux.lds.S | |||
@@ -57,10 +57,10 @@ SECTIONS | |||
57 | __init_begin = .; | 57 | __init_begin = .; |
58 | .init.text : { | 58 | .init.text : { |
59 | _sinittext = .; | 59 | _sinittext = .; |
60 | *(.init.text) | 60 | INIT_TEXT |
61 | _einittext = .; | 61 | _einittext = .; |
62 | } | 62 | } |
63 | .init.data : { *(.init.data) } | 63 | .init.data : { INIT_DATA } |
64 | . = ALIGN(16); | 64 | . = ALIGN(16); |
65 | __setup_start = .; | 65 | __setup_start = .; |
66 | .init.setup : { *(.init.setup) } | 66 | .init.setup : { *(.init.setup) } |
@@ -109,8 +109,8 @@ SECTIONS | |||
109 | 109 | ||
110 | /* Sections to be discarded */ | 110 | /* Sections to be discarded */ |
111 | /DISCARD/ : { | 111 | /DISCARD/ : { |
112 | *(.text.exit) | 112 | EXIT_TEXT |
113 | *(.data.exit) | 113 | EXIT_DATA |
114 | *(.exitcall.exit) | 114 | *(.exitcall.exit) |
115 | } | 115 | } |
116 | 116 | ||