diff options
author | Mikko Rapeli <mikko.rapeli@linaro.org> | 2024-12-20 16:04:39 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2024-12-27 11:28:23 -0500 |
commit | 69b8567e9784a277017f1b5ea164c3e7bbebf6ea (patch) | |
tree | e0b09e7adecbdacace2cdae16ee93bdfe63d1a6c | |
parent | 1dd9fdd1fec88433ca8dff73885da29b05de8ae2 (diff) | |
download | meta-security-69b8567e9784a277017f1b5ea164c3e7bbebf6ea.tar.gz |
ecryptfs-utils: depend on ecryptfs kernel module
ecryptfs-utils userspace daemon fails to start if kernel
module is not available on target.
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | recipes-security/ecryptfs-utils/ecryptfs-utils_111.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes-security/ecryptfs-utils/ecryptfs-utils_111.bb b/recipes-security/ecryptfs-utils/ecryptfs-utils_111.bb index 83d37d6..83246a2 100644 --- a/recipes-security/ecryptfs-utils/ecryptfs-utils_111.bb +++ b/recipes-security/ecryptfs-utils/ecryptfs-utils_111.bb | |||
@@ -69,4 +69,7 @@ do_install:append() { | |||
69 | FILES:${PN} += "${base_libdir}/security/* ${base_libdir}/ecryptfs/*" | 69 | FILES:${PN} += "${base_libdir}/security/* ${base_libdir}/ecryptfs/*" |
70 | 70 | ||
71 | RDEPENDS:${PN} += "cryptsetup" | 71 | RDEPENDS:${PN} += "cryptsetup" |
72 | RRECOMMENDS:${PN} = "gettext-runtime" | 72 | RRECOMMENDS:${PN} = " \ |
73 | gettext-runtime \ | ||
74 | kernel-module-ecryptfs \ | ||
75 | " | ||