diff options
author | Khem Raj <raj.khem@gmail.com> | 2024-02-27 09:14:46 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-02-27 09:56:23 -0800 |
commit | f69ee29d572f158984aa49f6548a8ab6da83c7ba (patch) | |
tree | e67ceda7bc1ca1d49e5f61ee7109f6d862e0ecd6 | |
parent | f5cc9f272a5632ae2f57ed2632c1d9a575e6b8ab (diff) | |
download | meta-openembedded-f69ee29d572f158984aa49f6548a8ab6da83c7ba.tar.gz |
ostree: Remove strace from ptest rdeps
it checks for strace and then try fault injection if it exists. So,
while it will be good to have strace port for rv32 it can be disabled
for now
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/ostree/ostree_2024.3.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta-oe/recipes-extended/ostree/ostree_2024.3.bb b/meta-oe/recipes-extended/ostree/ostree_2024.3.bb index 07dedc8b81..158ec9bc23 100644 --- a/meta-oe/recipes-extended/ostree/ostree_2024.3.bb +++ b/meta-oe/recipes-extended/ostree/ostree_2024.3.bb | |||
@@ -28,8 +28,6 @@ S = "${WORKDIR}/libostree-${PV}" | |||
28 | 28 | ||
29 | inherit autotools bash-completion gobject-introspection github-releases gtk-doc manpages pkgconfig ptest-gnome systemd | 29 | inherit autotools bash-completion gobject-introspection github-releases gtk-doc manpages pkgconfig ptest-gnome systemd |
30 | 30 | ||
31 | COMPATIBLE_HOST:riscv32 = "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', 'null', 'riscv32', d)}" | ||
32 | |||
33 | UNKNOWN_CONFIGURE_OPT_IGNORE = "--disable-introspection --enable-introspection" | 31 | UNKNOWN_CONFIGURE_OPT_IGNORE = "--disable-introspection --enable-introspection" |
34 | 32 | ||
35 | # Workaround compile failure: | 33 | # Workaround compile failure: |
@@ -203,6 +201,7 @@ RDEPENDS:${PN}-ptest += " \ | |||
203 | python3-pyyaml \ | 201 | python3-pyyaml \ |
204 | ${@bb.utils.contains('PACKAGECONFIG', 'gjs', 'gjs', '', d)} \ | 202 | ${@bb.utils.contains('PACKAGECONFIG', 'gjs', 'gjs', '', d)} \ |
205 | " | 203 | " |
204 | RDEPENDS:${PN}-ptest:remove:riscv32 = "strace" | ||
206 | RDEPENDS:${PN}-ptest:append:libc-glibc = " glibc-utils glibc-localedata-en-us" | 205 | RDEPENDS:${PN}-ptest:append:libc-glibc = " glibc-utils glibc-localedata-en-us" |
207 | 206 | ||
208 | RRECOMMENDS:${PN}:append:class-target = " kernel-module-overlay" | 207 | RRECOMMENDS:${PN}:append:class-target = " kernel-module-overlay" |