payloads: Add a target to print payload git urls and directories

Being able to fetch this list will allow the jenkins builder to securely
fetch the external payloads so we can start testing payload builds.

Change-Id: I777229216b2f11f0f427cd5f8cfa003da4171a77
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/14132
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Martin Roth
2016-03-16 12:42:05 -06:00
parent e68a4385d4
commit ae269c0276
7 changed files with 40 additions and 10 deletions

View File

@@ -2,6 +2,9 @@ TAG-$(CONFIG_SEABIOS_MASTER)=origin/master
TAG-$(CONFIG_SEABIOS_STABLE)=b3ef39f532db52bf17457ba931da758eeb38d6b4
TAG-$(CONFIG_SEABIOS_REVISION)=$(CONFIG_SEABIOS_REVISION_ID)
project_git_repo=http://review.coreboot.org/p/seabios.git
project_dir=seabios
unexport KCONFIG_AUTOHEADER
unexport KCONFIG_AUTOCONFIG
unexport KCONFIG_DEPENDENCIES
@@ -13,7 +16,7 @@ all: build
seabios:
echo " Cloning SeaBIOS from Git"
git clone http://review.coreboot.org/p/seabios.git seabios
git clone $(project_git_repo) $(project_dir)
fetch: seabios
ifeq ($(TAG-y),)
@@ -71,4 +74,7 @@ clean:
distclean:
rm -rf seabios
.PHONY: checkout config build clean distclean clone fetch
print-repo-info:
echo "$(project_git_repo) $(project_dir)"
.PHONY: checkout config build clean distclean clone fetch print-repo-info