From bcd676ffb9040a43d7d252a2be7ce5043f9318d6 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sat, 15 Oct 2011 08:23:39 +0800 Subject: [PATCH] Usermode/acess.ld - Fixed ARMv7 not loading headers --- Usermode/Libraries/acess.ld_src/acess_armv7.ld.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Usermode/Libraries/acess.ld_src/acess_armv7.ld.h b/Usermode/Libraries/acess.ld_src/acess_armv7.ld.h index e652a5aa..95ae441e 100644 --- a/Usermode/Libraries/acess.ld_src/acess_armv7.ld.h +++ b/Usermode/Libraries/acess.ld_src/acess_armv7.ld.h @@ -8,7 +8,7 @@ INPUT(crt0.o) SECTIONS { /* Read-only sections, merged into text segment: */ - PROVIDE (__executable_start = SEGMENT_START("text-segment", 0x8000)); . = SEGMENT_START("text-segment", 0x8000); + PROVIDE (__executable_start = SEGMENT_START("text-segment", 0x8000)); . = SEGMENT_START("text-segment", 0x8000) + SIZEOF_HEADERS; .interp : { *(.interp) } .note.gnu.build-id : { *(.note.gnu.build-id) } .hash : { *(.hash) } -- 2.20.1