summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorDan Callaghan <dan.callaghan@opengear.com>2020-07-23 18:50:31 +1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-07-25 15:11:05 +0100
commit7c3055e70f2dba92787d37d7b04d2486c7772740 (patch)
treee7df83ddd098b64b5a3b22103122645266fbdba0 /meta
parentd88024e7837f572448181ed57db69a8580ea2e84 (diff)
downloadpoky-7c3055e70f2dba92787d37d7b04d2486c7772740.tar.gz
stress-ng: create a symlink for /usr/bin/stress
In commit 72641004, stress-ng was made to provide the stress package, because it's backwards compatible with the old stress command. But it doesn't actually provide /usr/bin/stress which is what other recipes depending on stress will expect. Symlink /usr/bin/stress to stress-ng so that it actually becomes a drop-in replacement for stress. (From OE-Core rev: 5d8c4ea26a48135c3405afac0372e4e062a7339a) Signed-off-by: Dan Callaghan <dan.callaghan@opengear.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-extended/stress-ng/stress-ng_0.11.15.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-extended/stress-ng/stress-ng_0.11.15.bb b/meta/recipes-extended/stress-ng/stress-ng_0.11.15.bb
index 8ea0476db5..28bf9884cf 100644
--- a/meta/recipes-extended/stress-ng/stress-ng_0.11.15.bb
+++ b/meta/recipes-extended/stress-ng/stress-ng_0.11.15.bb
@@ -22,5 +22,6 @@ inherit bash-completion
22 22
23do_install() { 23do_install() {
24 oe_runmake DESTDIR=${D} install 24 oe_runmake DESTDIR=${D} install
25 ln -s stress-ng ${D}${bindir}/stress
25} 26}
26 27