From 4ae6b9a3ea39c8ce66576b08eaa51724ecfb2c8b Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Fri, 6 May 2016 16:06:36 -0500 Subject: [PATCH] UPSTREAM: 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. BUG=None BRANCH=None TEST=None Change-Id: Ibc90f238214bdde4f4d3e0d49b1981413d130f1a Signed-off-by: Aaron Durbin Reviewed-on: https://review.coreboot.org/14641 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi Reviewed-on: https://chromium-review.googlesource.com/368713 Commit-Ready: Furquan Shaikh Tested-by: Furquan Shaikh --- src/drivers/intel/fsp1_1/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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