From: Luke Kenneth Casson Leighton Date: Mon, 11 Apr 2022 15:31:46 +0000 (+0100) Subject: set start to _start in hello_world lds script X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ecef7078137c0cf4dbb134191a12329e0565d02f;p=ls2.git set start to _start in hello_world lds script this causes elf image to get the correct start (execution) address --- diff --git a/hello_world/powerpc.lds b/hello_world/powerpc.lds index 96bc6b9..f3901f4 100644 --- a/hello_world/powerpc.lds +++ b/hello_world/powerpc.lds @@ -1,6 +1,7 @@ SECTIONS { _start = .; + start = _start; . = 0; .head : { KEEP(*(.head))