diff options
author | Stefan Tauner <stefan.tauner@gmx.at> | 2018-08-19 17:48:53 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-08-22 15:34:35 +0000 |
commit | a07366c9f90a623081adfb426920cd8cf6d81f61 (patch) | |
tree | 4d1af8d1b48639c4f0925a44b990dc009828a2ee /payloads/external/Memtest86Plus/Makefile | |
parent | 44cff7a8975b2adbf2866718ec8c61ab0d9bd505 (diff) | |
download | coreboot-a07366c9f90a623081adfb426920cd8cf6d81f61.tar.xz |
payloads/external/Memtest86Plus: allow for selecting a specific revision
Because the Kconfig configuration files for primary payloads are
already sourced via a wildcard pattern this change requires to
use another file name pattern.
Change-Id: I83b89f5e14618e8a487ebb044fcdd3c175662591
Signed-off-by: Stefan Tauner <stefan.tauner@gmx.at>
Reviewed-on: https://review.coreboot.org/28217
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/Memtest86Plus/Makefile')
-rw-r--r-- | payloads/external/Memtest86Plus/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/payloads/external/Memtest86Plus/Makefile b/payloads/external/Memtest86Plus/Makefile index 2136495469..4b3132ddf5 100644 --- a/payloads/external/Memtest86Plus/Makefile +++ b/payloads/external/Memtest86Plus/Makefile @@ -17,6 +17,7 @@ TAG-$(CONFIG_MEMTEST_MASTER)=origin/master NAME-$(CONFIG_MEMTEST_MASTER)=Master TAG-$(CONFIG_MEMTEST_STABLE)=3754fd440f4009b62244e0f95c56bbb12c2fffcb NAME-$(CONFIG_MEMTEST_STABLE)=Stable +TAG-$(CONFIG_MEMTEST_REVISION)=$(CONFIG_MEMTEST_REVISION_ID) project_name=Memtest86+ project_dir=$(CURDIR)/memtest86plus @@ -29,6 +30,14 @@ $(project_dir): git clone $(project_git_repo) $(project_dir) fetch: $(project_dir) +ifeq ($(TAG-y),) + echo "Error: The specified tag is invalid" +ifeq ($(CONFIG_MEMTEST_REVISION),y) + echo "Error: There is no revision specified for $(project_name)" + false +endif + false +endif -cd $(project_dir); git show $(TAG-y) >/dev/null 2>&1 ; \ if [ $$? -ne 0 ] || [ "$(TAG-y)" = "origin/master" ]; then \ echo " Fetching new commits from the $(project_name) git repo"; \ |