From ecef7078137c0cf4dbb134191a12329e0565d02f Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 11 Apr 2022 16:31:46 +0100 Subject: [PATCH] set start to _start in hello_world lds script this causes elf image to get the correct start (execution) address --- hello_world/powerpc.lds | 1 + 1 file changed, 1 insertion(+) 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)) -- 2.30.2