summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNishanth Menon <nm@ti.com>2021-04-27 20:11:37 -0500
committerPraneeth Bajjuri <praneeth@ti.com>2021-05-03 16:14:27 -0500
commit618058733b70d0cd4f4f27394424b0c79b761516 (patch)
treeb9cfd266d046fcbf7047169123f3aae273745e91
parent8ec0047a595901cf8bc999aecf368e093f74d609 (diff)
downloadmeta-ti-618058733b70d0cd4f4f27394424b0c79b761516.tar.gz
recipes-bsp: u-boot-ti-mainline: Update to v2021.04 release
Update u-boot recipe to be on the bleeding upstream tag. While at it, also update the u-boot source url to point to the new server as per [1]. While it may be redundant, lets document the usage of URI and PROTOCOL for those, who (cough), may get tripped otherwise. [1] https://source.denx.de/u-boot/u-boot/-/commit/a3bbd0b912f9afff745247fe9641961875322926 Signed-off-by: Nishanth Menon <nm@ti.com> Reviewed-by: Denys Dmytriyenko <denys@konsulko.com>
-rw-r--r--recipes-bsp/u-boot/u-boot-ti-mainline_git.bb16
1 files changed, 12 insertions, 4 deletions
diff --git a/recipes-bsp/u-boot/u-boot-ti-mainline_git.bb b/recipes-bsp/u-boot/u-boot-ti-mainline_git.bb
index ee0b1764..0d3f33ef 100644
--- a/recipes-bsp/u-boot/u-boot-ti-mainline_git.bb
+++ b/recipes-bsp/u-boot/u-boot-ti-mainline_git.bb
@@ -4,7 +4,15 @@ LIC_FILES_CHKSUM = "file://Licenses/README;md5=5a7450c57ffe5ae63fd732446b988025"
4 4
5PR = "r0" 5PR = "r0"
6 6
7PV = "2020.10" 7PV = "2021.04"
8UBOOT_GIT_URI = "git://gitlab.denx.de/u-boot/u-boot.git" 8
9UBOOT_GIT_PROTOCOL = "http" 9# For the un-initiated:
10SRCREV = "050acee119b3757fee3bd128f55d720fdd9bb890" 10# The actual URL you'd use with a git clone for example would be:
11# https://source.denx.de/u-boot/u-boot.git/
12# However, in the context of OE, we have to explicitly split things up:
13# a) we want it to use git fetcher - hence git:// prefix in GIT_URI (if we
14# used https here, we'd endup attempting wget instead of git)
15# b) and we want git fetcher to use https protocol, hence GIT_PROTOCOL as https
16UBOOT_GIT_URI = "git://source.denx.de/u-boot/u-boot.git"
17UBOOT_GIT_PROTOCOL = "https"
18SRCREV = "b46dd116ce03e235f2a7d4843c6278e1da44b5e1"