[PATCH 38/41] m68k: fix reference to init_task in vmlinux-sun3.lds

From: Al Viro
Date: Tue Jan 03 2006 - 18:29:09 EST


From: Al Viro <viro@xxxxxxxxxxxxxxxxxx>
Date: 1135379268 -0500

it's *(.data.init_task), not init_task...

Signed-off-by: Al Viro <viro@xxxxxxxxxxxxxxxxxx>
(cherry picked from d626a118ee82e1c5ec3d1155d91825b5aca5bfd9 commit)

---

arch/m68k/kernel/vmlinux-sun3.lds | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

f526c250f704ae3a076a98cdb14dc9ad438a9ebd
diff --git a/arch/m68k/kernel/vmlinux-sun3.lds b/arch/m68k/kernel/vmlinux-sun3.lds
index f814e66..65cc39c 100644
--- a/arch/m68k/kernel/vmlinux-sun3.lds
+++ b/arch/m68k/kernel/vmlinux-sun3.lds
@@ -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 */
--
0.99.9.GIT

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/