From 085c1389cf416f77d4ba12e524cf2b7ad10a2182 Mon Sep 17 00:00:00 2001 From: Ankur Tyagi Date: Sat, 18 Aug 2018 07:02:23 +0000 Subject: [PATCH] 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 Signed-off-by: Denys Dmytriyenko --- recipes-bsp/u-boot/u-boot-ti.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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+" LIC_FILES_CHKSUM = "file://Licenses/README;md5=a2c678cfd4a4d97135585cad908541c6" BRANCH ?= "master" -SRC_URI = "git://git.ti.com/ti-u-boot/ti-u-boot.git;protocol=git;branch=${BRANCH}" +UBOOT_GIT_URI = "git://git.ti.com/ti-u-boot/ti-u-boot.git" +UBOOT_GIT_PROTOCOL = "git" +SRC_URI = "${UBOOT_GIT_URI};protocol=${UBOOT_GIT_PROTOCOL};branch=${BRANCH}" PV_append = "+git${SRCPV}"