summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>2024-12-06 10:08:42 +0100
committerKhem Raj <raj.khem@gmail.com>2024-12-06 20:55:56 -0800
commitf3d301643e51f1421634972e6612fc33a5c8beaf (patch)
treee5a42dfa58185b3d89065b38e3364476b403622a
parent68ac4d21c264f5fa2312e7e6c275477839d10e7e (diff)
downloadmeta-openembedded-f3d301643e51f1421634972e6612fc33a5c8beaf.tar.gz
xfstests: add missing run-time dependencies
The test program passes command-line arguments to hostname, grep and mount that are not present in busybox' variants, so we need to pull in the real things. The recipe also misses mkfs and findmnt programs so add those to RDEPENDS as well. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb b/meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb
index 8d997ef643..695d81c2b1 100644
--- a/meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb
+++ b/meta-filesystems/recipes-utils/xfstests/xfstests_2024.03.03.bb
@@ -36,6 +36,11 @@ RDEPENDS:${PN} += "\
36 xfsprogs \ 36 xfsprogs \
37 acl \ 37 acl \
38 gawk \ 38 gawk \
39 util-linux-mkfs \
40 util-linux-mount \
41 util-linux-findmnt \
42 inetutils-hostname \
43 grep \
39" 44"
40 45
41USERADD_PACKAGES = "${PN}" 46USERADD_PACKAGES = "${PN}"