summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Eatmon <reatmon@ti.com>2024-10-21 15:35:53 -0500
committerRyan Eatmon <reatmon@ti.com>2024-10-22 11:59:48 -0500
commit352ef10373df268fbcecb5f8e7aced153326efb6 (patch)
treeba24d06dd4e3b8c22e699c4cba7ae8a293c846ed
parent2d50a0ddf779aafd1aae1afcaee28611b60e3119 (diff)
downloadmeta-ti-352ef10373df268fbcecb5f8e7aced153326efb6.tar.gz
u-boot-ti: Tweak the GIT variables for u-boot
We are planning on adding upstream u-boot testing against stable tagged versions of u-boot and need a little more control over telling bitbake to not point at a branch but point to a tag. Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc
index 97237d66..0e7e2c6e 100644
--- a/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc
+++ b/meta-ti-bsp/recipes-bsp/u-boot/u-boot-ti.inc
@@ -21,8 +21,9 @@ LIC_FILES_CHKSUM = "file://Licenses/README;md5=2ca5f2c35c8cc335f0a19756634782f1"
21 21
22BRANCH ?= "master" 22BRANCH ?= "master"
23UBOOT_GIT_URI ?= "git://git.ti.com/git/ti-u-boot/ti-u-boot.git" 23UBOOT_GIT_URI ?= "git://git.ti.com/git/ti-u-boot/ti-u-boot.git"
24UBOOT_GIT_PROTOCOL = "https" 24UBOOT_GIT_PROTOCOL ?= "https"
25SRC_URI = "${UBOOT_GIT_URI};protocol=${UBOOT_GIT_PROTOCOL};branch=${BRANCH}" 25UBOOT_GIT_BRANCH ?= "branch=${BRANCH}"
26SRC_URI = "${UBOOT_GIT_URI};protocol=${UBOOT_GIT_PROTOCOL};${UBOOT_GIT_BRANCH}"
26 27
27PV:append = "+git" 28PV:append = "+git"
28 29