diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/i386/lib/failover.lds | 2 | ||||
-rw-r--r-- | src/arch/i386/lib/failover_failover.lds | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/i386/lib/failover.lds b/src/arch/i386/lib/failover.lds index ed8460e50c..94c3e097fb 100644 --- a/src/arch/i386/lib/failover.lds +++ b/src/arch/i386/lib/failover.lds @@ -1 +1 @@ - __normal_image = (CONFIG_ROM_STREAM_START & 0xfffffff0) - 8; + __normal_image = (CONFIG_ROM_PAYLOAD_START & 0xfffffff0) - 8; diff --git a/src/arch/i386/lib/failover_failover.lds b/src/arch/i386/lib/failover_failover.lds index e042aa8cef..814f2000fb 100644 --- a/src/arch/i386/lib/failover_failover.lds +++ b/src/arch/i386/lib/failover_failover.lds @@ -1,2 +1,2 @@ - __fallback_image = (CONFIG_ROM_STREAM_START & 0xfffffff0) - 8; - __normal_image = ((CONFIG_ROM_STREAM_START - FALLBACK_SIZE) & 0xfffffff0) - 8; + __fallback_image = (CONFIG_ROM_PAYLOAD_START & 0xfffffff0) - 8; + __normal_image = ((CONFIG_ROM_PAYLOAD_START - FALLBACK_SIZE) & 0xfffffff0) - 8; |