[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>
This commit is contained in:
Al Viro 2006-01-12 01:06:38 -08:00 committed by Linus Torvalds
parent a763be5c1a
commit 54a5a6eb58
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ __init_begin = .;
__initramfs_end = .;
. = ALIGN(8192);
__init_end = .;
.init.task : { *(init_task) }
.data.init.task : { *(.data.init_task) }
.bss : { *(.bss) } /* BSS */