diff options
author | Martin Roth <martinroth@google.com> | 2016-03-16 12:42:05 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-03-21 14:32:02 +0100 |
commit | ae269c0276d5a0938b76cdd1561f504a7cc2a858 (patch) | |
tree | 8efb4a087b445e3a33b820f8915d8eef006b07a4 /payloads/Makefile.inc | |
parent | e68a4385d4e8d9e247ac1f09d406fd2fb4e9b1de (diff) |
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>
Diffstat (limited to 'payloads/Makefile.inc')
-rw-r--r-- | payloads/Makefile.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/payloads/Makefile.inc b/payloads/Makefile.inc index 44d1d7709c..c969c9e2d3 100644 --- a/payloads/Makefile.inc +++ b/payloads/Makefile.inc @@ -34,4 +34,7 @@ clean-payloads: distclean-payloads: $(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) distclean; ) -.PHONY: clean-payloads distclean-payloads +print-repo-info-payloads: + -$(foreach payload, $(PAYLOADS_LIST), $(MAKE) -C $(payload) print-repo-info 2>/dev/null; ) + +.PHONY: clean-payloads distclean-payloads print-repo-info-payloads |