aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/arch/x86/id.ld2
-rw-r--r--src/cpu/intel/fit/fit.ld2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/id.ld b/src/arch/x86/id.ld
index 3d9ef37ab9..2a50f9ca4f 100644
--- a/src/arch/x86/id.ld
+++ b/src/arch/x86/id.ld
@@ -12,7 +12,7 @@
*/
SECTIONS {
- . = (CONFIG_X86_RESET_VECTOR - CONFIG_ID_SECTION_OFFSET) - (__id_end - __id_start) + 0x10;
+ . = (0xffffffff - CONFIG_ID_SECTION_OFFSET) - (__id_end - __id_start) + 1;
.id (.): {
KEEP(*(.id))
}
diff --git a/src/cpu/intel/fit/fit.ld b/src/cpu/intel/fit/fit.ld
index 2e65186e40..6e30ea168a 100644
--- a/src/cpu/intel/fit/fit.ld
+++ b/src/cpu/intel/fit/fit.ld
@@ -12,7 +12,7 @@
*/
SECTIONS {
- . = CONFIG_X86_RESET_VECTOR - 0x30; /* 0xffffffc0 */
+ . = 0xffffffc0;
.fit_pointer (.): {
KEEP(*(.fit_pointer))
}