summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-03-10 18:15:09 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-03-13 17:35:22 +0000
commitae856e4139bf398f015138ea7b70f8726eebab2d (patch)
treeec070269d7bd96d8cc5813ae536e8609adfb6867
parent647b9ddb33d950340c6edac75883531418b937e2 (diff)
downloadpoky-ae856e4139bf398f015138ea7b70f8726eebab2d.tar.gz
busybox: Fix ptest dependencies
Ironically, busybox ptests don't all work without coreutils being present. This dependency fixes execution in minimal images but the failing start-stop-daemon test case should probably be investigated in due course and the dependency removed when possible. (From OE-Core rev: 658c5ed34e279983b1827abfe4e439524b72d4a9) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/busybox/busybox.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
index 62dc839245..4569acd475 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -55,7 +55,7 @@ RDEPENDS:${PN} = "${@["", "busybox-inittab"][(d.getVar('VIRTUAL-RUNTIME_init_man
55inherit cml1 systemd update-rc.d ptest 55inherit cml1 systemd update-rc.d ptest
56 56
57# busybox's unzip test case needs zip command, which busybox itself does not provide 57# busybox's unzip test case needs zip command, which busybox itself does not provide
58RDEPENDS:${PN}-ptest = "zip" 58RDEPENDS:${PN}-ptest = "zip coreutils"
59 59
60# internal helper 60# internal helper
61def busybox_cfg(feature, tokens, cnf, rem): 61def busybox_cfg(feature, tokens, cnf, rem):