diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2019-06-17 10:49:48 +0200 |
---|---|---|
committer | Philipp Deppenwiese <zaolin.daisuki@gmail.com> | 2019-06-18 10:43:10 +0000 |
commit | 917420f7e8ca9047ef639fe8b642ebcc128e62d1 (patch) | |
tree | 11cb1d7b80fb130e480d6cf56f4ccfed02e2eaa7 /Makefile.inc | |
parent | 15110f12cb6d9e2f9e05854b99e8a5f404fa7c59 (diff) | |
download | coreboot-917420f7e8ca9047ef639fe8b642ebcc128e62d1.tar.xz |
Makefile.inc: Update 3rdparty/intel-microcode on USE_BLOBS
Change-Id: I0caeff3ff5613a594a79441e849440ebdc9a9b87
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33553
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.inc b/Makefile.inc index 2ba9446fdf..48879bc9fd 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -193,9 +193,10 @@ ifneq ($(UPDATED_SUBMODULES),1) # 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,intel-microcode} is update=none, and so is ignored # unless explicitly requested and enabled through --checkout forgetthis:=$(if $(GIT),$(shell git submodule update --init --checkout 3rdparty/blobs)) +forgetthis:=$(if $(GIT),$(shell git submodule update --init --checkout 3rdparty/intel-microcode)) ifeq ($(CONFIG_PLATFORM_USES_FSP1_0)$(CONFIG_PLATFORM_USES_FSP1_1)$(CONFIG_PLATFORM_USES_FSP2_0),y) # this is necessary because 3rdparty/fsp is update=none, and so is ignored # unless explicitly requested and enabled through --checkout |