diff options
author | Ovidiu Panait <ovidiu.panait@windriver.com> | 2023-07-21 13:58:27 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-07-25 15:27:33 +0100 |
commit | 71252e03e732163a90a59e28aae06ebf4e427e6c (patch) | |
tree | efc6aad17374700abec059f37499a31f5311feca /meta | |
parent | ae1d3786936d45307a744186ba3dab743a027134 (diff) | |
download | poky-71252e03e732163a90a59e28aae06ebf4e427e6c.tar.gz |
mdadm: add util-linux-blockdev ptest dependency
07revert-inplace test logs contain the following:
func.sh: line 335: /sbin/blockdev: No such file or directory
Add the missing util-linux-blockdev dependency.
(From OE-Core rev: a15cd04f528d137d428a572f15d1ec5ebbbd81f0)
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/mdadm/mdadm_4.2.bb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meta/recipes-extended/mdadm/mdadm_4.2.bb b/meta/recipes-extended/mdadm/mdadm_4.2.bb index 50d9548747..fa50325f1f 100644 --- a/meta/recipes-extended/mdadm/mdadm_4.2.bb +++ b/meta/recipes-extended/mdadm/mdadm_4.2.bb | |||
@@ -107,7 +107,14 @@ do_install_ptest() { | |||
107 | } | 107 | } |
108 | 108 | ||
109 | RDEPENDS:${PN} += "bash" | 109 | RDEPENDS:${PN} += "bash" |
110 | RDEPENDS:${PN}-ptest += "bash e2fsprogs-mke2fs util-linux-lsblk util-linux-losetup strace" | 110 | RDEPENDS:${PN}-ptest += " \ |
111 | bash \ | ||
112 | e2fsprogs-mke2fs \ | ||
113 | util-linux-lsblk \ | ||
114 | util-linux-losetup \ | ||
115 | util-linux-blockdev \ | ||
116 | strace \ | ||
117 | " | ||
111 | RRECOMMENDS:${PN}-ptest += " \ | 118 | RRECOMMENDS:${PN}-ptest += " \ |
112 | coreutils \ | 119 | coreutils \ |
113 | kernel-module-loop \ | 120 | kernel-module-loop \ |