diff options
Diffstat (limited to 'src/arch/x86/lib/id.lds')
-rw-r--r-- | src/arch/x86/lib/id.lds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/lib/id.lds b/src/arch/x86/lib/id.lds index d646270daf..9e31ee615c 100644 --- a/src/arch/x86/lib/id.lds +++ b/src/arch/x86/lib/id.lds @@ -1,5 +1,5 @@ SECTIONS { - . = (CONFIG_ROMBASE + CONFIG_ROM_IMAGE_SIZE - CONFIG_ID_SECTION_OFFSET) - (__id_end - __id_start); + . = (0x100000000 - CONFIG_ID_SECTION_OFFSET) - (__id_end - __id_start); .id (.): { *(.id) } |