Matt DeVillier has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/32526
Change subject: Makefile.inc: Update fsp submodule if CONFIG_USE_BLOBS ......................................................................
Makefile.inc: Update fsp submodule if CONFIG_USE_BLOBS
Rather than selectively update the fsp submodule based on platform selection, update it if CONFIG_USE_BLOBS is selected so all platforms using fsp repo have latest version available.
Change-Id: If07d55828a1863623e04a4ecdd1514c3cb6d9c11 Signed-off-by: Matt DeVillier matt.devillier@gmail.com --- M Makefile.inc 1 file changed, 1 insertion(+), 8 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/26/32526/1
diff --git a/Makefile.inc b/Makefile.inc index 36c05db..ebc8ee5 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -193,18 +193,11 @@ # try to fetch non-optional submodules if the source is under git forgetthis:=$(if $(GIT),$(shell git submodule update --init)) ifeq ($(CONFIG_USE_BLOBS),y) -# this is necessary because 3rdparty/blobs is update=none, and so is ignored +# this is necessary because 3rdparty/blobs,fsp are update=none, and so are ignored # unless explicitly requested and enabled through --checkout forgetthis:=$(if $(GIT),$(shell git submodule update --init --checkout 3rdparty/blobs)) -ifeq ($(CONFIG_PLATFORM_USES_FSP2_0),y) forgetthis:=$(if $(GIT),$(shell git submodule update --init --checkout 3rdparty/fsp)) endif -ifeq ($(CONFIG_PLATFORM_USES_FSP1_0),y) -ifeq ($(CONFIG_SOC_INTEL_FSP_BROADWELL_DE),y) -forgetthis:=$(if $(GIT),$(shell git submodule update --init --checkout 3rdparty/fsp)) -endif -endif -endif UPDATED_SUBMODULES:=1 COREBOOT_EXPORTS += UPDATED_SUBMODULES endif