diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-05-26 15:48:38 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-05-27 10:22:31 +0100 |
commit | c2dc8be24b160740ecbc46391f54bffa13b17612 (patch) | |
tree | 9e88436c79f2336c2007481af396b74d23eb2a63 /meta | |
parent | 70b128cb7168a1e96f7f387efbcd549388ddb4e9 (diff) | |
download | poky-c2dc8be24b160740ecbc46391f54bffa13b17612.tar.gz |
ltp: Add missing dependencies on coreutils, bc, e2fsprogs and gdb
When the tests are run we see messages like:
/opt/ltp/testcases/bin/run_cpuctl_stress_test.sh: line 242: nice: command not found
/opt/ltp/testcases/bin/run_cpuctl_test_fj.sh: line 66: tac: command not found
vma05 1 TCONF: 'gdb' not found
memcg_failcnt 1 TCONF: 'bc' not found
Owner=nobody; perms=-rw-------; sudo: lsattr: command not found
so add missing dependencies to avoid these.
(From OE-Core rev: faa01e1ae7a92d60699cd8865d1106a13549b096)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/ltp/ltp_20200515.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-extended/ltp/ltp_20200515.bb b/meta/recipes-extended/ltp/ltp_20200515.bb index 317a4e461a..0304a40185 100644 --- a/meta/recipes-extended/ltp/ltp_20200515.bb +++ b/meta/recipes-extended/ltp/ltp_20200515.bb | |||
@@ -77,13 +77,17 @@ do_install(){ | |||
77 | RDEPENDS_${PN} = "\ | 77 | RDEPENDS_${PN} = "\ |
78 | attr \ | 78 | attr \ |
79 | bash \ | 79 | bash \ |
80 | bc \ | ||
81 | coreutils \ | ||
80 | cpio \ | 82 | cpio \ |
81 | cronie \ | 83 | cronie \ |
82 | curl \ | 84 | curl \ |
85 | e2fsprogs \ | ||
83 | e2fsprogs-mke2fs \ | 86 | e2fsprogs-mke2fs \ |
84 | expect \ | 87 | expect \ |
85 | file \ | 88 | file \ |
86 | gawk \ | 89 | gawk \ |
90 | gdb \ | ||
87 | gzip \ | 91 | gzip \ |
88 | iproute2 \ | 92 | iproute2 \ |
89 | ldd \ | 93 | ldd \ |