diff options
author | Ryan Eatmon <reatmon@ti.com> | 2025-06-24 15:54:36 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2025-06-25 13:16:57 -0500 |
commit | d3f73eaf07035c997d57385fe2d8452d2660623f (patch) | |
tree | fb88514dda1e28f81859854291b016ba55d1c0b9 | |
parent | d02032fa40131f56e0f94e6226cf8f315ba72fb4 (diff) | |
download | meta-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>
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 | ||
15 | SRC_URI = "git://git.ti.com/git/graphics/ti-gc320-driver.git;protocol=https;branch=${BRANCH}" | 15 | SRC_URI = "git://git.ti.com/git/graphics/ti-gc320-driver.git;protocol=https;branch=${BRANCH}" |
16 | 16 | ||
17 | S = "${WORKDIR}/git/src" | 17 | S:append = "/src" |
18 | 18 | ||
19 | EXTRA_OEMAKE += "-f Kbuild AQROOT=${S} KERNEL_DIR=${STAGING_KERNEL_DIR} TOOLCHAIN_PATH=${TOOLCHAIN_PATH} CROSS_COMPILE=${TARGET_PREFIX} ARCH_TYPE=${TARGET_ARCH}" | 19 | EXTRA_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 @@ | |||
1 | SUMMARY = "Userspace libraries for PowerVR Rogue GPU on TI SoCs" | 1 | SUMMARY = "Userspace libraries for PowerVR Rogue GPU on TI SoCs" |
2 | HOMEPAGE = "http://git.ti.com/graphics/ti-img-rogue-umlibs" | 2 | HOMEPAGE = "http://git.ti.com/graphics/ti-img-rogue-umlibs" |
3 | LICENSE = "TI-TFL" | 3 | LICENSE = "TI-TFL" |
4 | LIC_FILES_CHKSUM = "file://${WORKDIR}/git/LICENSE;md5=7232b98c1c58f99e3baa03de5207e76f" | 4 | LIC_FILES_CHKSUM = "file://git/LICENSE;md5=7232b98c1c58f99e3baa03de5207e76f" |
5 | 5 | ||
6 | inherit bin_package | 6 | inherit bin_package |
7 | 7 | ||
@@ -15,7 +15,7 @@ PR = "r3" | |||
15 | BRANCH = "linuxws/kirkstone/k6.1/${PV}" | 15 | BRANCH = "linuxws/kirkstone/k6.1/${PV}" |
16 | SRC_URI = "git://git.ti.com/git/graphics/ti-img-rogue-umlibs.git;protocol=https;branch=${BRANCH}" | 16 | SRC_URI = "git://git.ti.com/git/graphics/ti-img-rogue-umlibs.git;protocol=https;branch=${BRANCH}" |
17 | SRCREV = "0b9e64254269be2fa95c4f3e1dd925d6e4d58199" | 17 | SRCREV = "0b9e64254269be2fa95c4f3e1dd925d6e4d58199" |
18 | S = "${WORKDIR}/git/targetfs/${TARGET_PRODUCT}/${PVR_WS}/${PVR_BUILD}" | 18 | S:append = "/targetfs/${TARGET_PRODUCT}/${PVR_WS}/${PVR_BUILD}" |
19 | 19 | ||
20 | TARGET_PRODUCT:j721e = "j721e_linux" | 20 | TARGET_PRODUCT:j721e = "j721e_linux" |
21 | TARGET_PRODUCT:j721s2 = "j721s2_linux" | 21 | TARGET_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 | ||
5 | PV:append = "+git" | 5 | PV:append = "+git" |
6 | 6 | ||
7 | S = "${WORKDIR}/git/debugss_module/debugss-mod" | 7 | S:append = "/debugss_module/debugss-mod" |
8 | 8 | ||
9 | inherit module | 9 | inherit 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 | ||
7 | PR = "${INC_PR}.2" | 7 | PR = "${INC_PR}.2" |
8 | 8 | ||
9 | S = "${WORKDIR}/git/dsptop" | 9 | S:append = "/dsptop" |
10 | 10 | ||
11 | DEVICE = "" | 11 | DEVICE = "" |
12 | DEVICE:dra7xx = "DRA7xx" | 12 | DEVICE: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" | |||
9 | DEPENDS = "ti-cgt6x-native" | 9 | DEPENDS = "ti-cgt6x-native" |
10 | PR = "${INC_PR}.0" | 10 | PR = "${INC_PR}.0" |
11 | 11 | ||
12 | S = "${WORKDIR}/git/dsptop/ulm" | 12 | S:append = "/dsptop/ulm" |
13 | 13 | ||
14 | DEVICE = "" | 14 | DEVICE = "" |
15 | DEVICE:dra7xx = "DRA7xx" | 15 | DEVICE: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 | ||
10 | DEPENDS = "libnl" | 10 | DEPENDS = "libnl" |
11 | 11 | ||
12 | S = "${WORKDIR}/git/cc33calibrator" | 12 | S:append = "/cc33calibrator" |
13 | 13 | ||
14 | export CROSS_COMPILE = "${TARGET_PREFIX}" | 14 | export 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 | ||
8 | PV = "1.7.0.120" | 8 | PV = "1.7.0.120" |
9 | 9 | ||
10 | S = "${WORKDIR}/git/cc33conf" | 10 | S:append = "/cc33conf" |
11 | 11 | ||
12 | EXTRA_OEMAKE = "CC="${CC}"" | 12 | EXTRA_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 | |||
6 | SRCREV = "5048b59a444ac59ba7171d6e122d5a84581aebf2" | 6 | SRCREV = "5048b59a444ac59ba7171d6e122d5a84581aebf2" |
7 | SRC_URI = "git://git.ti.com/git/wilink8-wlan/18xx-ti-utils.git;branch=master;protocol=https" | 7 | SRC_URI = "git://git.ti.com/git/wilink8-wlan/18xx-ti-utils.git;branch=master;protocol=https" |
8 | 8 | ||
9 | S = "${WORKDIR}/git/wlconf" | 9 | S:append = "/wlconf" |
10 | 10 | ||
11 | EXTRA_OEMAKE = "CC="${CC}"" | 11 | EXTRA_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 | ||
17 | S = "${WORKDIR}/git/gdbc6x" | 17 | S:append = "/gdbc6x" |
18 | 18 | ||
19 | inherit update-rc.d | 19 | inherit update-rc.d |
20 | inherit gettext | 20 | inherit 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 | ||
7 | PR = "${INC_PR}.0" | 7 | PR = "${INC_PR}.0" |
8 | 8 | ||
9 | S = "${WORKDIR}/git/gdbserver-c6x/src" | 9 | S:append = "/gdbserver-c6x/src" |
10 | 10 | ||
11 | PLATFORM = "" | 11 | PLATFORM = "" |
12 | PLATFORM:dra7xx = "DRA7xx_PLATFORM" | 12 | PLATFORM: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 | ||
12 | S = "${WORKDIR}/git/kernel_module/gdbproxy-mod" | 12 | S:append = "/kernel_module/gdbproxy-mod" |
13 | 13 | ||
14 | inherit module | 14 | inherit 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" | |||
13 | DEPENDS = "ti-cgt6x-native" | 13 | DEPENDS = "ti-cgt6x-native" |
14 | PR = "r0" | 14 | PR = "r0" |
15 | 15 | ||
16 | S = "${WORKDIR}/git/aet" | 16 | S:append = "/aet" |
17 | 17 | ||
18 | DEVICE = "" | 18 | DEVICE = "" |
19 | DEVICE:dra7xx = "DRA7xx" | 19 | DEVICE:dra7xx = "DRA7xx" |