diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-29 13:20:57 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-30 18:56:47 +0100 |
commit | ddcf16d1f792153f7f7fec4b1dcbc11855b64208 (patch) | |
tree | 31bc0771b9bcdb6cd31c8a06ff1fb77fa4f7eaf3 /meta/recipes-example | |
parent | b777781ebf88f049c37a04154e86ed0940d11d95 (diff) | |
download | poky-ddcf16d1f792153f7f7fec4b1dcbc11855b64208.tar.gz |
meta: Add explict branch to git SRC_URIs
There is uncertainty about the default branch name in git going forward.
To try and cover the different possible outcomes, add branch names to all
git:// and gitsm:// SRC_URI entries.
This update was made with the script added to contrib in this patch which
aims to help others convert other layers.
(From OE-Core rev: b51c405faf6f8c0365f7533bfaf470d79152a463)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-example')
-rw-r--r-- | meta/recipes-example/rust-hello-world/rust-hello-world_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-example/rust-hello-world/rust-hello-world_git.bb b/meta/recipes-example/rust-hello-world/rust-hello-world_git.bb index 3ebd9cc661..1d91109b51 100644 --- a/meta/recipes-example/rust-hello-world/rust-hello-world_git.bb +++ b/meta/recipes-example/rust-hello-world/rust-hello-world_git.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | inherit cargo | 1 | inherit cargo |
2 | 2 | ||
3 | SRC_URI = "git://github.com/meta-rust/rust-hello-world.git;protocol=https" | 3 | SRC_URI = "git://github.com/meta-rust/rust-hello-world.git;protocol=https;branch=master" |
4 | SRCREV="e0fa23f1a3cb1eb1407165bd2fc36d2f6e6ad728" | 4 | SRCREV="e0fa23f1a3cb1eb1407165bd2fc36d2f6e6ad728" |
5 | LIC_FILES_CHKSUM="file://COPYRIGHT;md5=e6b2207ac3740d2d01141c49208c2147" | 5 | LIC_FILES_CHKSUM="file://COPYRIGHT;md5=e6b2207ac3740d2d01141c49208c2147" |
6 | 6 | ||