summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnkur Tyagi <ankur.tyagi85@gmail.com>2018-08-18 07:02:23 +0000
committerDenys Dmytriyenko <denys@ti.com>2018-08-21 17:09:30 +0000
commit50cf6f09ebc7267ae529a0eaa14d1d29c08b54c9 (patch)
tree1b3929e829e533997e5535a612c56d5ec9f1b332
parentb053b2a7f18ec91f6fb718f092a79895dd752af8 (diff)
downloadmeta-ti-50cf6f09ebc7267ae529a0eaa14d1d29c08b54c9.tar.gz
u-boot-ti: add UBOOT_GIT_URI, UBOOT_GIT_PROTOCOL variable
This is to allow user to override git repository and git protocol. Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r--recipes-bsp/u-boot/u-boot-ti.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes-bsp/u-boot/u-boot-ti.inc b/recipes-bsp/u-boot/u-boot-ti.inc
index 61bf990d..f22fcb4d 100644
--- a/recipes-bsp/u-boot/u-boot-ti.inc
+++ b/recipes-bsp/u-boot/u-boot-ti.inc
@@ -22,7 +22,9 @@ LICENSE = "GPLv2+"
22LIC_FILES_CHKSUM = "file://Licenses/README;md5=a2c678cfd4a4d97135585cad908541c6" 22LIC_FILES_CHKSUM = "file://Licenses/README;md5=a2c678cfd4a4d97135585cad908541c6"
23 23
24BRANCH ?= "master" 24BRANCH ?= "master"
25SRC_URI = "git://git.ti.com/ti-u-boot/ti-u-boot.git;protocol=git;branch=${BRANCH}" 25UBOOT_GIT_URI = "git://git.ti.com/ti-u-boot/ti-u-boot.git"
26UBOOT_GIT_PROTOCOL = "git"
27SRC_URI = "${UBOOT_GIT_URI};protocol=${UBOOT_GIT_PROTOCOL};branch=${BRANCH}"
26 28
27PV_append = "+git${SRCPV}" 29PV_append = "+git${SRCPV}"
28 30