From ff71b88278db63ff22b7f39d38bd952dea34f2a1 Mon Sep 17 00:00:00 2001 From: "Gabriel L. Somlo" Date: Tue, 11 Jun 2019 10:46:49 -0400 Subject: configure: Add option to set physical memory start address For systems where physical memory is mapped to a start address different from 0x80000000, allow the default to be overridden using the --with-mem-start argument to the configure script. Signed-off-by: Gabriel Somlo --- pk/pk.lds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pk') diff --git a/pk/pk.lds b/pk/pk.lds index 635ccd0..75af7c5 100644 --- a/pk/pk.lds +++ b/pk/pk.lds @@ -12,7 +12,7 @@ SECTIONS /*--------------------------------------------------------------------*/ /* Begining of code and text segment */ - . = 0x80000000; + . = MEM_START; _ftext = .; .text : -- cgit v1.1