diff options
author | Alistair Francis <alistair23@gmail.com> | 2025-04-10 10:28:49 +1000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-04-10 08:31:04 -0700 |
commit | a3e34d2ada9f230ca105aa36bbff2eb5484b100d (patch) | |
tree | 556fffa62d3cea84093192baad3004905581878f | |
parent | 2c1a7f9bf0e345a76ca4781fe416dde6469c6d1c (diff) | |
download | meta-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.bb | 6 |
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 | ||
21 | inherit meson pkgconfig | 21 | inherit meson pkgconfig |
22 | 22 | ||
23 | EXTRA_OEMESON += "-Dkeyutils=disabled -Dopenssl=disabled -Dpython=disabled" | 23 | PACKAGECONFIG ??= "keyutils openssl" |
24 | |||
25 | PACKAGECONFIG[keyutils] = "-Dkeyutils=enabled,-Dkeyutils=disabled,keyutils" | ||
26 | PACKAGECONFIG[openssl] = "-Dopenssl=enabled,-Dopenssl=disabled,openssl" | ||
27 | PACKAGECONFIG[python] = "-Dpython=enabled,-Dpython=disabled,python" | ||