diff options
author | Ryan Eatmon <reatmon@ti.com> | 2025-06-25 10:35:13 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2025-06-25 13:16:57 -0500 |
commit | d107aa6c5809e3307c50d25ff73c3a72287daf52 (patch) | |
tree | c315f02ecb4a3385c13cf427d860705d38755767 | |
parent | b53565b2cec5921e28cf285964189edd410f337b (diff) | |
download | meta-ti-d107aa6c5809e3307c50d25ff73c3a72287daf52.tar.gz |
ti-ipc-rtos: Update to handle nested git repos
When specifying multiple git repos in the SRC_URI and you want the
"secondary" repositories to appear within the directory structure of the
primary repository, then we need to make sure that the destsuffix is
correct. With the change to calculating the value of S to use
BB_GIT_DEFAULT_DESTSUFFIX, we need to make sure that the destsuffix is
based on that variable as well.
Also, update the paths for S to be within new source location.
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos.inc b/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos.inc index 14ac7c77..2f93db72 100644 --- a/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos.inc +++ b/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos.inc | |||
@@ -1,7 +1,7 @@ | |||
1 | require recipes-ti/includes/ti-paths.inc | 1 | require recipes-ti/includes/ti-paths.inc |
2 | 2 | ||
3 | TI_IPC_EXAMPLES_GIT_URI = "git://git.ti.com/git/ipc/ipc-examples.git" | 3 | TI_IPC_EXAMPLES_GIT_URI = "git://git.ti.com/git/ipc/ipc-examples.git" |
4 | TI_IPC_EXAMPLES_DEST_SUFFIX = "git/ipc-examples" | 4 | TI_IPC_EXAMPLES_DEST_SUFFIX = "${BB_GIT_DEFAULT_DESTSUFFIX}/ipc-examples" |
5 | TI_IPC_EXAMPLES_GIT_PROTOCOL = "https" | 5 | TI_IPC_EXAMPLES_GIT_PROTOCOL = "https" |
6 | TI_IPC_EXAMPLES_GIT_BRANCH = "master" | 6 | TI_IPC_EXAMPLES_GIT_BRANCH = "master" |
7 | TI_IPC_EXAMPLES_NAME = "ipc-examples" | 7 | TI_IPC_EXAMPLES_NAME = "ipc-examples" |
@@ -13,7 +13,7 @@ branch=${TI_IPC_EXAMPLES_GIT_BRANCH};\ | |||
13 | name=${TI_IPC_EXAMPLES_NAME}" | 13 | name=${TI_IPC_EXAMPLES_NAME}" |
14 | 14 | ||
15 | TI_IPC_METADATA_GIT_URI = "git://git.ti.com/git/ipc/ipc-metadata.git" | 15 | TI_IPC_METADATA_GIT_URI = "git://git.ti.com/git/ipc/ipc-metadata.git" |
16 | TI_IPC_METADATA_DEST_SUFFIX = "git/ipc-metadata" | 16 | TI_IPC_METADATA_DEST_SUFFIX = "${BB_GIT_DEFAULT_DESTSUFFIX}/ipc-metadata" |
17 | TI_IPC_METADATA_GIT_PROTOCOL = "https" | 17 | TI_IPC_METADATA_GIT_PROTOCOL = "https" |
18 | TI_IPC_METADATA_GIT_BRANCH = "master" | 18 | TI_IPC_METADATA_GIT_BRANCH = "master" |
19 | TI_IPC_METADATA_NAME = "ipc-metadata" | 19 | TI_IPC_METADATA_NAME = "ipc-metadata" |
@@ -33,8 +33,8 @@ SRCREV_FORMAT = "default" | |||
33 | SRCREV_ipc-metadata = "${TI_IPC_METADATA_SRCREV}" | 33 | SRCREV_ipc-metadata = "${TI_IPC_METADATA_SRCREV}" |
34 | SRCREV_ipc-examples = "${TI_IPC_EXAMPLES_SRCREV}" | 34 | SRCREV_ipc-examples = "${TI_IPC_EXAMPLES_SRCREV}" |
35 | 35 | ||
36 | S_ipc-examples = "${WORKDIR}/git/ipc-examples" | 36 | S_ipc-examples = "${S}/ipc-examples" |
37 | S_ipc-metadata = "${WORKDIR}/git/ipc-metadata" | 37 | S_ipc-metadata = "${S}/ipc-metadata" |
38 | 38 | ||
39 | RELEASE_TYPE = "GA" | 39 | RELEASE_TYPE = "GA" |
40 | RELEASE_SUFFIX = "" | 40 | RELEASE_SUFFIX = "" |