
25 Sep
2019
25 Sep
'19
5 p.m.
The current 'fsp' command only works with FSP1. Update it to avoid trying to build it with FSP2.
Signed-off-by: Simon Glass sjg@chromium.org ---
cmd/x86/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/x86/Makefile b/cmd/x86/Makefile index 144b1cf5abe..c50ddccef57 100644 --- a/cmd/x86/Makefile +++ b/cmd/x86/Makefile @@ -3,4 +3,4 @@ obj-y += mtrr.o obj-$(CONFIG_CMD_EXCEPTION) += exception.o obj-$(CONFIG_USE_HOB) += hob.o -obj-$(CONFIG_HAVE_FSP) += fsp.o +obj-$(CONFIG_FSP_VERSION1) += fsp.o
--
2.23.0.444.g18eeb5a265-goog