diff options
author | Gergely Kiss <mail.gery@gmail.com> | 2017-12-24 22:42:14 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-02-15 18:30:23 +0000 |
commit | af15268c103642f32461d939cc4a9b836ad8db94 (patch) | |
tree | b83ae374b44118de1461c179f3bce12b8995ffcb /payloads/external | |
parent | f7da8927f6d816679d603d082a496ae893e8daa5 (diff) | |
download | coreboot-af15268c103642f32461d939cc4a9b836ad8db94.tar.gz coreboot-af15268c103642f32461d939cc4a9b836ad8db94.tar.bz2 coreboot-af15268c103642f32461d939cc4a9b836ad8db94.zip |
tianocore: fix Makefile to build a custom revision or branch
Kconfig variables TIANOCORE_REVISION and TIANOCORE_REVISION_ID
do not have an effect without this fix, the build process would
checkout the hard-coded stable hash even if these variables are set.
Change-Id: I9711a370eeade3cba0a9e127deb3d96d82adc512
Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
Reviewed-on: https://review.coreboot.org/22983
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'payloads/external')
-rw-r--r-- | payloads/external/tianocore/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/payloads/external/tianocore/Makefile b/payloads/external/tianocore/Makefile index ade0be8389c8..c942d30e0658 100644 --- a/payloads/external/tianocore/Makefile +++ b/payloads/external/tianocore/Makefile @@ -19,6 +19,7 @@ export SHELL := env bash STABLE_COMMIT_ID=315d9d08fd77db1024ccc5307823da8aaed85e2f TAG-$(CONFIG_TIANOCORE_MASTER)=origin/master TAG-$(CONFIG_TIANOCORE_STABLE)=$(STABLE_COMMIT_ID) +TAG-$(CONFIG_TIANOCORE_REVISION)=$(CONFIG_TIANOCORE_REVISION_ID) project_name=Tianocore project_dir=$(CURDIR)/tianocore |