diff options
author | Ryan Eatmon <reatmon@ti.com> | 2024-07-26 15:29:26 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2024-07-26 15:38:03 -0500 |
commit | fbe16e3eebd61b9f6d3968f376d683c1d0fb8977 (patch) | |
tree | 9afaaaf3f2db822490889795a3a7ff81274858cc | |
parent | b16d0babeab33348372085e81154b918c3a751dc (diff) | |
download | meta-ti-fbe16e3eebd61b9f6d3968f376d683c1d0fb8977.tar.gz |
ti-ipc-rtos: Disable buildpaths check
The ti-cgt6x compiler is a custom TI compiler for the TI C6000
Digital Signal Processor(DSP) platform. It does not currently
support reproducible builds and is provided via a binary blob
download that we cannot patch in the recipe to address the
issue.
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb b/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb index 999993ea..b4d2e2fa 100644 --- a/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb +++ b/meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb | |||
@@ -99,3 +99,14 @@ pkg_postinst:${PN}-fw:omapl138 () { | |||
99 | pkg_postrm:${PN}-fw:omapl138 () { | 99 | pkg_postrm:${PN}-fw:omapl138 () { |
100 | update-alternatives --remove rproc-dsp-fw ipc/ti_platforms_evmOMAPL138_DSP/messageq_single.xe674 | 100 | update-alternatives --remove rproc-dsp-fw ipc/ti_platforms_evmOMAPL138_DSP/messageq_single.xe674 |
101 | } | 101 | } |
102 | |||
103 | # Disable the "buildpaths" check while we figure out how we are | ||
104 | # going to address this issue. | ||
105 | # | ||
106 | # The ti-cgt6x compiler is a custom TI compiler for the TI C6000 | ||
107 | # Digital Signal Processor(DSP) platform. It does not currently | ||
108 | # support reproducible builds and is provided via a binary blob | ||
109 | # download that we cannot patch in the recipe to address the | ||
110 | # issue. | ||
111 | INSANE_SKIP:${PN}-dev += "buildpaths" | ||
112 | INSANE_SKIP:${PN}-fw += "buildpaths" | ||