summaryrefslogtreecommitdiffstats
path: root/src/cpu/intel/fit/fit.ld
diff options
context:
space:
mode:
authorMarshall Dawson <marshalldawson3rd@gmail.com>2019-11-01 17:30:05 -0600
committerPatrick Georgi <pgeorgi@google.com>2019-12-06 15:16:47 +0000
commit67910db907fb3d5feacdbfaa40952a88f673795a (patch)
treeb174ff649ea7c5d301191dd66d3789a9a055cfbf /src/cpu/intel/fit/fit.ld
parent4ba70a75758711b1665545f754cbe11235df5097 (diff)
downloadcoreboot-67910db907fb3d5feacdbfaa40952a88f673795a.tar.gz
coreboot-67910db907fb3d5feacdbfaa40952a88f673795a.tar.bz2
coreboot-67910db907fb3d5feacdbfaa40952a88f673795a.zip
arch|cpu/x86: Add Kconfig option for x86 reset vector
Prepare for an implementation supporting the reset vector in RAM and not the traditional 0xfffffff0. Add a Kconfig symbol that can be used in place of hardcoded values. Change-Id: I6a814f7179ee4251aeeccb2555221616e944e03d Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37485 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/cpu/intel/fit/fit.ld')
-rw-r--r--src/cpu/intel/fit/fit.ld2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/intel/fit/fit.ld b/src/cpu/intel/fit/fit.ld
index 6e30ea168acb..2e65186e4082 100644
--- a/src/cpu/intel/fit/fit.ld
+++ b/src/cpu/intel/fit/fit.ld
@@ -12,7 +12,7 @@
*/
SECTIONS {
- . = 0xffffffc0;
+ . = CONFIG_X86_RESET_VECTOR - 0x30; /* 0xffffffc0 */
.fit_pointer (.): {
KEEP(*(.fit_pointer))
}