summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Eatmon <reatmon@ti.com>2025-06-24 15:54:36 -0500
committerRyan Eatmon <reatmon@ti.com>2025-06-25 13:16:57 -0500
commitd3f73eaf07035c997d57385fe2d8452d2660623f (patch)
treefb88514dda1e28f81859854291b016ba55d1c0b9
parentd02032fa40131f56e0f94e6226cf8f315ba72fb4 (diff)
downloadmeta-ti-d3f73eaf07035c997d57385fe2d8452d2660623f.tar.gz
meta-ti/all: Handle S when building a subdir of the git repo
If a recipe is fetching an entire git repo and then just building a single dir, then we need to update S to lock into the sub directory. Easiest fix is to simply append the subdir to whatever the system wants to set S to by default. Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--meta-ti-bsp/recipes-bsp/gc320-drivers/ti-gc320-driver_5.0.11.p7.bb2
-rw-r--r--meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.3.6512818.bb4
-rw-r--r--meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb2
-rw-r--r--meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb2
-rw-r--r--meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb2
-rw-r--r--meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb2
-rw-r--r--meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb2
-rw-r--r--meta-ti-extras/recipes-connectivity/wlconf/wlconf_8.7.3.bb2
-rw-r--r--meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb2
-rw-r--r--meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb2
-rw-r--r--meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb2
-rw-r--r--meta-ti-extras/recipes-ti/ctoolslib/libaet_git.bb2
12 files changed, 13 insertions, 13 deletions
diff --git a/meta-ti-bsp/recipes-bsp/gc320-drivers/ti-gc320-driver_5.0.11.p7.bb b/meta-ti-bsp/recipes-bsp/gc320-drivers/ti-gc320-driver_5.0.11.p7.bb
index bc2b7fc2..3acdd130 100644
--- a/meta-ti-bsp/recipes-bsp/gc320-drivers/ti-gc320-driver_5.0.11.p7.bb
+++ b/meta-ti-bsp/recipes-bsp/gc320-drivers/ti-gc320-driver_5.0.11.p7.bb
@@ -14,7 +14,7 @@ SRCREV = "83afddf9dbf6a8458267b4dae21ee35bfb11f3d1"
14 14
15SRC_URI = "git://git.ti.com/git/graphics/ti-gc320-driver.git;protocol=https;branch=${BRANCH}" 15SRC_URI = "git://git.ti.com/git/graphics/ti-gc320-driver.git;protocol=https;branch=${BRANCH}"
16 16
17S = "${WORKDIR}/git/src" 17S:append = "/src"
18 18
19EXTRA_OEMAKE += "-f Kbuild AQROOT=${S} KERNEL_DIR=${STAGING_KERNEL_DIR} TOOLCHAIN_PATH=${TOOLCHAIN_PATH} CROSS_COMPILE=${TARGET_PREFIX} ARCH_TYPE=${TARGET_ARCH}" 19EXTRA_OEMAKE += "-f Kbuild AQROOT=${S} KERNEL_DIR=${STAGING_KERNEL_DIR} TOOLCHAIN_PATH=${TOOLCHAIN_PATH} CROSS_COMPILE=${TARGET_PREFIX} ARCH_TYPE=${TARGET_ARCH}"
20 20
diff --git a/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.3.6512818.bb b/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.3.6512818.bb
index 592a0e80..5dc6c211 100644
--- a/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.3.6512818.bb
+++ b/meta-ti-bsp/recipes-graphics/powervr-umlibs/ti-img-rogue-umlibs_23.3.6512818.bb
@@ -1,7 +1,7 @@
1SUMMARY = "Userspace libraries for PowerVR Rogue GPU on TI SoCs" 1SUMMARY = "Userspace libraries for PowerVR Rogue GPU on TI SoCs"
2HOMEPAGE = "http://git.ti.com/graphics/ti-img-rogue-umlibs" 2HOMEPAGE = "http://git.ti.com/graphics/ti-img-rogue-umlibs"
3LICENSE = "TI-TFL" 3LICENSE = "TI-TFL"
4LIC_FILES_CHKSUM = "file://${WORKDIR}/git/LICENSE;md5=7232b98c1c58f99e3baa03de5207e76f" 4LIC_FILES_CHKSUM = "file://git/LICENSE;md5=7232b98c1c58f99e3baa03de5207e76f"
5 5
6inherit bin_package 6inherit bin_package
7 7
@@ -15,7 +15,7 @@ PR = "r3"
15BRANCH = "linuxws/kirkstone/k6.1/${PV}" 15BRANCH = "linuxws/kirkstone/k6.1/${PV}"
16SRC_URI = "git://git.ti.com/git/graphics/ti-img-rogue-umlibs.git;protocol=https;branch=${BRANCH}" 16SRC_URI = "git://git.ti.com/git/graphics/ti-img-rogue-umlibs.git;protocol=https;branch=${BRANCH}"
17SRCREV = "0b9e64254269be2fa95c4f3e1dd925d6e4d58199" 17SRCREV = "0b9e64254269be2fa95c4f3e1dd925d6e4d58199"
18S = "${WORKDIR}/git/targetfs/${TARGET_PRODUCT}/${PVR_WS}/${PVR_BUILD}" 18S:append = "/targetfs/${TARGET_PRODUCT}/${PVR_WS}/${PVR_BUILD}"
19 19
20TARGET_PRODUCT:j721e = "j721e_linux" 20TARGET_PRODUCT:j721e = "j721e_linux"
21TARGET_PRODUCT:j721s2 = "j721s2_linux" 21TARGET_PRODUCT:j721s2 = "j721s2_linux"
diff --git a/meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb b/meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb
index b1fa3ab8..d8e759d9 100644
--- a/meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb
+++ b/meta-ti-extras/recipes-bsp/dsptop/debugss-module-drv_git.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://COPYING.txt;md5=9d4316fe434ba450dca4da25348ca5a3"
4 4
5PV:append = "+git" 5PV:append = "+git"
6 6
7S = "${WORKDIR}/git/debugss_module/debugss-mod" 7S:append = "/debugss_module/debugss-mod"
8 8
9inherit module 9inherit module
10 10
diff --git a/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb b/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb
index c725202a..5e8c56b8 100644
--- a/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb
+++ b/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb
@@ -6,7 +6,7 @@ DEPENDS = "libulm ncurses"
6 6
7PR = "${INC_PR}.2" 7PR = "${INC_PR}.2"
8 8
9S = "${WORKDIR}/git/dsptop" 9S:append = "/dsptop"
10 10
11DEVICE = "" 11DEVICE = ""
12DEVICE:dra7xx = "DRA7xx" 12DEVICE:dra7xx = "DRA7xx"
diff --git a/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb b/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb
index a4670b6e..73c7831e 100644
--- a/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb
+++ b/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb
@@ -9,7 +9,7 @@ REQUIRED_MACHINE_FEATURES = "dsp"
9DEPENDS = "ti-cgt6x-native" 9DEPENDS = "ti-cgt6x-native"
10PR = "${INC_PR}.0" 10PR = "${INC_PR}.0"
11 11
12S = "${WORKDIR}/git/dsptop/ulm" 12S:append = "/dsptop/ulm"
13 13
14DEVICE = "" 14DEVICE = ""
15DEVICE:dra7xx = "DRA7xx" 15DEVICE:dra7xx = "DRA7xx"
diff --git a/meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb b/meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb
index cd5b7dc5..57311667 100644
--- a/meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb
+++ b/meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb
@@ -9,7 +9,7 @@ PV = "1.0.0.50"
9 9
10DEPENDS = "libnl" 10DEPENDS = "libnl"
11 11
12S = "${WORKDIR}/git/cc33calibrator" 12S:append = "/cc33calibrator"
13 13
14export CROSS_COMPILE = "${TARGET_PREFIX}" 14export CROSS_COMPILE = "${TARGET_PREFIX}"
15 15
diff --git a/meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb b/meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb
index 096bf9bc..724be6e5 100644
--- a/meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb
+++ b/meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb
@@ -7,7 +7,7 @@ SRC_URI = "git://git.ti.com/git/cc33xx-wlan/cc33xx-utils.git;branch=master;proto
7 7
8PV = "1.7.0.120" 8PV = "1.7.0.120"
9 9
10S = "${WORKDIR}/git/cc33conf" 10S:append = "/cc33conf"
11 11
12EXTRA_OEMAKE = "CC="${CC}"" 12EXTRA_OEMAKE = "CC="${CC}""
13 13
diff --git a/meta-ti-extras/recipes-connectivity/wlconf/wlconf_8.7.3.bb b/meta-ti-extras/recipes-connectivity/wlconf/wlconf_8.7.3.bb
index a23db663..8285bf9f 100644
--- a/meta-ti-extras/recipes-connectivity/wlconf/wlconf_8.7.3.bb
+++ b/meta-ti-extras/recipes-connectivity/wlconf/wlconf_8.7.3.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://README;beginline=1;endline=21;md5=adc05a1903d3f107f85
6SRCREV = "5048b59a444ac59ba7171d6e122d5a84581aebf2" 6SRCREV = "5048b59a444ac59ba7171d6e122d5a84581aebf2"
7SRC_URI = "git://git.ti.com/git/wilink8-wlan/18xx-ti-utils.git;branch=master;protocol=https" 7SRC_URI = "git://git.ti.com/git/wilink8-wlan/18xx-ti-utils.git;branch=master;protocol=https"
8 8
9S = "${WORKDIR}/git/wlconf" 9S:append = "/wlconf"
10 10
11EXTRA_OEMAKE = "CC="${CC}"" 11EXTRA_OEMAKE = "CC="${CC}""
12 12
diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb
index 27b844cb..b803ac5b 100644
--- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb
+++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb
@@ -14,7 +14,7 @@ SRC_URI:append = " \
14 file://0001-libbfd.h-suppress-GCC9-Wstringop-truncation.patch;striplevel=2 \ 14 file://0001-libbfd.h-suppress-GCC9-Wstringop-truncation.patch;striplevel=2 \
15" 15"
16 16
17S = "${WORKDIR}/git/gdbc6x" 17S:append = "/gdbc6x"
18 18
19inherit update-rc.d 19inherit update-rc.d
20inherit gettext 20inherit gettext
diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb
index b09599ad..6c538817 100644
--- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb
+++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb
@@ -6,7 +6,7 @@ DEPENDS = "ti-xdais ti-framework-components ti-cgt6x-native ti-sysbios ti-xdctoo
6 6
7PR = "${INC_PR}.0" 7PR = "${INC_PR}.0"
8 8
9S = "${WORKDIR}/git/gdbserver-c6x/src" 9S:append = "/gdbserver-c6x/src"
10 10
11PLATFORM = "" 11PLATFORM = ""
12PLATFORM:dra7xx = "DRA7xx_PLATFORM" 12PLATFORM:dra7xx = "DRA7xx_PLATFORM"
diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb
index 1dc2296d..2ee97269 100644
--- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb
+++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbserverproxy-module-drv_git.bb
@@ -9,7 +9,7 @@ SRC_URI:append = "\
9 file://0002-Support-Linux-kernels-v6.6.patch;patchdir=../.. \ 9 file://0002-Support-Linux-kernels-v6.6.patch;patchdir=../.. \
10" 10"
11 11
12S = "${WORKDIR}/git/kernel_module/gdbproxy-mod" 12S:append = "/kernel_module/gdbproxy-mod"
13 13
14inherit module 14inherit module
15 15
diff --git a/meta-ti-extras/recipes-ti/ctoolslib/libaet_git.bb b/meta-ti-extras/recipes-ti/ctoolslib/libaet_git.bb
index f3b03bd6..4043da55 100644
--- a/meta-ti-extras/recipes-ti/ctoolslib/libaet_git.bb
+++ b/meta-ti-extras/recipes-ti/ctoolslib/libaet_git.bb
@@ -13,7 +13,7 @@ SRCREV = "de7954abab0f0caa8a2c7b53095c30226d901a31"
13DEPENDS = "ti-cgt6x-native" 13DEPENDS = "ti-cgt6x-native"
14PR = "r0" 14PR = "r0"
15 15
16S = "${WORKDIR}/git/aet" 16S:append = "/aet"
17 17
18DEVICE = "" 18DEVICE = ""
19DEVICE:dra7xx = "DRA7xx" 19DEVICE:dra7xx = "DRA7xx"