Message ID | 20250312150824.6579-2-reatmon@ti.com |
---|---|
State | New |
Headers | show |
Series | Add COMPATIBLE_MACHINEs | expand |
diff --git a/meta-arago-extras/recipes-devtools/statcol/statcol.bb b/meta-arago-extras/recipes-devtools/statcol/statcol.bb index 223989ef..24ee3772 100644 --- a/meta-arago-extras/recipes-devtools/statcol/statcol.bb +++ b/meta-arago-extras/recipes-devtools/statcol/statcol.bb @@ -10,6 +10,7 @@ SRCREV = "279bf455bc3dec69f374d46a8225687935f4323a" SRC_URI = "git://git.ti.com/git/glsdk/statcol.git;protocol=${PROTOCOL};branch=${BRANCH}" DEPENDS = "ti-rpmsg-char websocketd" + RDEPENDS:${PN} = "bash" S = "${WORKDIR}/git" @@ -21,3 +22,5 @@ do_install() { } INSANE_SKIP:${PN} = "ldflags" + +COMPATIBLE_MACHINE = "^(k3)$"
The ti-rpmsg-char recipe has a COMPATIBLE_MACHINE setting that limits it to just k3 devices. Since this package depends on it, we need the same setting. Signed-off-by: Ryan Eatmon <reatmon@ti.com> --- meta-arago-extras/recipes-devtools/statcol/statcol.bb | 3 +++ 1 file changed, 3 insertions(+)