aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc64/boot/zImage.lds
diff options
context:
space:
mode:
authorOlaf Hering <olh@suse.de>2005-10-28 20:46:48 -0400
committerPaul Mackerras <paulus@samba.org>2005-10-29 01:10:12 -0400
commita4497235f00d811943831c9d76995d36c4ffab2d (patch)
tree7731fe28f9b5b98a94f9182766a20eb862e6f5cf /arch/ppc64/boot/zImage.lds
parentafbe8c4bb0155f533d6e57edd269c93e2f23c2fa (diff)
[PATCH] ppc64 boot: make the zImage relocateable
Make the zImage relocateable. So yaboot could just load and run any ELF binary, without worrying about its load address. Signed-off-by: Olaf Hering <olh@suse.de> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Anton Blanchard <anton@samba.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc64/boot/zImage.lds')
-rw-r--r--arch/ppc64/boot/zImage.lds4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/ppc64/boot/zImage.lds b/arch/ppc64/boot/zImage.lds
index fb465a4d89b5..79d62c733ec0 100644
--- a/arch/ppc64/boot/zImage.lds
+++ b/arch/ppc64/boot/zImage.lds
@@ -13,7 +13,9 @@ SECTIONS
13 *(.rodata*) 13 *(.rodata*)
14 *(.data*) 14 *(.data*)
15 *(.sdata*) 15 *(.sdata*)
16 *(.got*) 16 __got2_start = .;
17 *(.got2)
18 __got2_end = .;
17 } 19 }
18 20
19 . = ALIGN(4096); 21 . = ALIGN(4096);