diff options
author | Wes Lindauer <wesley.lindauer@gmail.com> | 2018-11-14 16:52:37 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-16 11:46:07 +0000 |
commit | 2ce3efc6a6ff2ef2a5bf43da09f908038564b2f1 (patch) | |
tree | 137592b9f606c00f82d7ae3fd46827d96f61e9f1 /meta/recipes-core | |
parent | bfe2255172c9d33a592e0ecdec6d651672d22682 (diff) | |
download | poky-2ce3efc6a6ff2ef2a5bf43da09f908038564b2f1.tar.gz |
busybox: Provide /bin/ash when usrmerge is enabled
When usrmerge is enabled, scripts that were explicitly using #!/bin/ash
will cause a QA Error like the following:
QA Issue: bar.sh contained in package foo requires /bin/ash,
but no providers found in RDEPENDS_foo? [file-rdeps].
It seems perfectly acceptable for scripts to use /bin/ash so provide
it along with /bin/sh.
(From OE-Core rev: cc8d54521aa79c1ca88c801e89c3ade6c17ae7a2)
Signed-off-by: Wes Lindauer <wesley.lindauer@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/busybox/busybox.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc index 09433dd824..b8d8858e5c 100644 --- a/meta/recipes-core/busybox/busybox.inc +++ b/meta/recipes-core/busybox/busybox.inc | |||
@@ -455,4 +455,4 @@ pkg_prerm_${PN}-syslog () { | |||
455 | fi | 455 | fi |
456 | } | 456 | } |
457 | 457 | ||
458 | RPROVIDES_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', '/bin/sh', '', d)}" | 458 | RPROVIDES_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', '/bin/sh /bin/ash', '', d)}" |