diff options
author | Ryan Eatmon <reatmon@ti.com> | 2025-03-24 13:41:10 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2025-03-24 17:31:33 -0500 |
commit | 6e615bbee08b82f2eff2fdb225c1187fcf858361 (patch) | |
tree | f8a6d28c6a88e23cee034595d165520379cef534 | |
parent | af9c8327414caf1a9737626c02d76c64e7458305 (diff) | |
download | meta-ti-6e615bbee08b82f2eff2fdb225c1187fcf858361.tar.gz |
ti-linux-fw: Split out SRC_URI into variables
To facilitate better testing we need to control all aspects of the
SRC_URI. Create TI_LINUX_FW_GIT_URI, TI_LINUX_FW_GIT_PROTOCOL, and
TI_LINUX_FW_GIT_BRANCH and build SRC_URI using them.
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc b/meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc index 0d912625..d69109f4 100644 --- a/meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc +++ b/meta-ti-bsp/recipes-bsp/ti-linux-fw/ti-linux-fw.inc | |||
@@ -22,7 +22,11 @@ SRCREV = "${TI_LINUX_FW_SRCREV}" | |||
22 | 22 | ||
23 | BRANCH ?= "ti-linux-firmware" | 23 | BRANCH ?= "ti-linux-firmware" |
24 | 24 | ||
25 | SRC_URI = "git://git.ti.com/git/processor-firmware/ti-linux-firmware.git;protocol=https;branch=${BRANCH}" | 25 | TI_LINUX_FW_GIT_URI ?= "git://git.ti.com/git/processor-firmware/ti-linux-firmware.git" |
26 | TI_LINUX_FW_GIT_PROTOCOL ?= "https" | ||
27 | TI_LINUX_FW_GIT_BRANCH ?= "branch=${BRANCH}" | ||
28 | |||
29 | SRC_URI = "${TI_LINUX_FW_GIT_URI};protocol=${TI_LINUX_FW_GIT_PROTOCOL};${TI_LINUX_FW_GIT_BRANCH}" | ||
26 | 30 | ||
27 | S = "${WORKDIR}/git" | 31 | S = "${WORKDIR}/git" |
28 | 32 | ||