diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-05-06 16:06:36 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-08-06 04:33:55 +0200 |
commit | d89bcf284111f13ff827bf17f7741e2f5eff2410 (patch) | |
tree | e1d5cedd60c7110aa42a551e944d4f9b5350b017 /src/drivers/intel | |
parent | 35cca5a9232763a98733a25fe70527d96427cff2 (diff) |
drivers/intel/fsp1_1: only set a base address for FSP in COREBOOT CBFS
The -b FSP_LOC argument to cbfstool is only valid for the COREBOOT
CBFS. Don't pass that value for all other CBFS regions.
Change-Id: Ib5321e7a7dbee8d26eb558933c8ce3fea50b11fe
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/14641
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/drivers/intel')
-rw-r--r-- | src/drivers/intel/fsp1_1/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/intel/fsp1_1/Makefile.inc b/src/drivers/intel/fsp1_1/Makefile.inc index 397bad89b2..30bc0bff5d 100644 --- a/src/drivers/intel/fsp1_1/Makefile.inc +++ b/src/drivers/intel/fsp1_1/Makefile.inc @@ -55,9 +55,9 @@ vbt.bin-type := optionrom ifeq ($(CONFIG_HAVE_FSP_BIN),y) cbfs-files-y += fsp.bin fsp.bin-file := $(call strip_quotes,$(CONFIG_FSP_FILE)) -fsp.bin-position := $(CONFIG_FSP_LOC) fsp.bin-type := fsp fsp.bin-options := --xip +fsp.bin-COREBOOT-cbfstool-opts := -b $(CONFIG_FSP_LOC) endif endif |