summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlistair Francis <alistair23@gmail.com>2025-04-10 10:28:49 +1000
committerKhem Raj <raj.khem@gmail.com>2025-04-10 08:31:04 -0700
commita3e34d2ada9f230ca105aa36bbff2eb5484b100d (patch)
tree556fffa62d3cea84093192baad3004905581878f
parent2c1a7f9bf0e345a76ca4781fe416dde6469c6d1c (diff)
downloadmeta-openembedded-a3e34d2ada9f230ca105aa36bbff2eb5484b100d.tar.gz
libnvme: Support keyutils and openssl by default
Use PACKAGECONFIG to support keyutils and openssl by default. This allows NVMe-OF connections with TLS. Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/libnvme/libnvme_1.12.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/libnvme/libnvme_1.12.bb b/meta-oe/recipes-support/libnvme/libnvme_1.12.bb
index a80d34277f..1054f83487 100644
--- a/meta-oe/recipes-support/libnvme/libnvme_1.12.bb
+++ b/meta-oe/recipes-support/libnvme/libnvme_1.12.bb
@@ -20,4 +20,8 @@ S = "${WORKDIR}/git"
20 20
21inherit meson pkgconfig 21inherit meson pkgconfig
22 22
23EXTRA_OEMESON += "-Dkeyutils=disabled -Dopenssl=disabled -Dpython=disabled" 23PACKAGECONFIG ??= "keyutils openssl"
24
25PACKAGECONFIG[keyutils] = "-Dkeyutils=enabled,-Dkeyutils=disabled,keyutils"
26PACKAGECONFIG[openssl] = "-Dopenssl=enabled,-Dopenssl=disabled,openssl"
27PACKAGECONFIG[python] = "-Dpython=enabled,-Dpython=disabled,python"