diff options
| author | Arnaldo Carvalho de Melo <acme@conectiva.com.br> | 2002-12-28 08:49:54 -0200 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <acme@conectiva.com.br> | 2002-12-28 08:49:54 -0200 |
| commit | 292d9faf2fd686e2303887c8560baa943d33d4e0 (patch) | |
| tree | 4d451b4b1e2d4d0547012d0a9b175f5fc28b00a3 | |
| parent | 58acbf381481df951fc05b1084b5f4b79540357a (diff) | |
o sparc: add missing __{start,stop}___param to vmlinux.lds.S
Rusty missed this one.
| -rw-r--r-- | arch/sparc/vmlinux.lds.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/sparc/vmlinux.lds.S b/arch/sparc/vmlinux.lds.S index e0610ed2df4c..a9343f993144 100644 --- a/arch/sparc/vmlinux.lds.S +++ b/arch/sparc/vmlinux.lds.S @@ -48,6 +48,9 @@ SECTIONS __setup_start = .; .init.setup : { *(.init.setup) } __setup_end = .; + __start___param = .; + __param : { *(__param) } + __stop___param = .; __initcall_start = .; .initcall.init : { *(.initcall1.init) |
