diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-01-12 04:06:38 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-12 12:09:05 -0500 |
commit | 54a5a6eb5842d68fe0aaa60d50fdea532c19770b (patch) | |
tree | d2684da4b1253453f41003c2597c60bf9c2bafd6 | |
parent | a763be5c1aace94cf4adfc5ea164f5b0d2d255cd (diff) |
[PATCH] m68k: fix reference to init_task in vmlinux-sun3.lds
it's *(.data.init_task), not init_task...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | arch/m68k/kernel/vmlinux-sun3.lds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/kernel/vmlinux-sun3.lds b/arch/m68k/kernel/vmlinux-sun3.lds index f814e66590e6..65cc39c24185 100644 --- a/arch/m68k/kernel/vmlinux-sun3.lds +++ b/arch/m68k/kernel/vmlinux-sun3.lds | |||
@@ -67,7 +67,7 @@ __init_begin = .; | |||
67 | __initramfs_end = .; | 67 | __initramfs_end = .; |
68 | . = ALIGN(8192); | 68 | . = ALIGN(8192); |
69 | __init_end = .; | 69 | __init_end = .; |
70 | .init.task : { *(init_task) } | 70 | .data.init.task : { *(.data.init_task) } |
71 | 71 | ||
72 | 72 | ||
73 | .bss : { *(.bss) } /* BSS */ | 73 | .bss : { *(.bss) } /* BSS */ |