package/libkcapi: support enabling lib-asym and lib-kpp

Add Kconfig options to allow enabling asymmetric cipher support
(--enable-lib-asym) and key protocol primitives support
(--enable-lib-kpp) in library.

Signed-off-by: Tan En De <ende.tan@linux.starfivetech.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Tan En De 2022-10-15 16:47:57 +08:00 committed by Thomas Petazzoni
parent 4ed6d61c03
commit 1ce9af6ccf
2 changed files with 26 additions and 0 deletions

View File

@ -8,6 +8,13 @@ config BR2_PACKAGE_LIBKCAPI
if BR2_PACKAGE_LIBKCAPI
config BR2_PACKAGE_LIBKCAPI_ASYM
bool "build asymmetric ciphers library"
help
Using this library requires the Linux kernel to be patched
with libkcapi Linux kernel patches found in libkcapi
kernel-patches/ directory.
config BR2_PACKAGE_LIBKCAPI_DGSTAPP
bool "build dgst application"
@ -21,6 +28,13 @@ config BR2_PACKAGE_LIBKCAPI_HASHER
comment "hasher application needs a toolchain w/ dynamic library"
depends on BR2_STATIC_LIBS
config BR2_PACKAGE_LIBKCAPI_KPP
bool "build KPP library"
help
Using this library requires the Linux kernel to be patched
with libkcapi Linux kernel patches found in libkcapi
kernel-patches/ directory.
config BR2_PACKAGE_LIBKCAPI_RNGAPP
bool "build rng read application"

View File

@ -17,6 +17,12 @@ LIBKCAPI_CONF_ENV = \
ac_cv_path_XMLTO=""
LIBKCAPI_MAKE_OPTS = CPPFLAGS="$(TARGET_CPPFLAGS)"
ifeq ($(BR2_PACKAGE_LIBKCAPI_ASYM),y)
LIBKCAPI_CONF_OPTS += --enable-lib-asym
else
LIBKCAPI_CONF_OPTS += --disable-lib-asym
endif
ifeq ($(BR2_PACKAGE_LIBKCAPI_DGSTAPP),y)
LIBKCAPI_CONF_OPTS += --enable-kcapi-dgstapp
else
@ -35,6 +41,12 @@ else
LIBKCAPI_CONF_OPTS += --disable-kcapi-hasher
endif
ifeq ($(BR2_PACKAGE_LIBKCAPI_KPP),y)
LIBKCAPI_CONF_OPTS += --enable-lib-kpp
else
LIBKCAPI_CONF_OPTS += --disable-lib-kpp
endif
ifeq ($(BR2_PACKAGE_LIBKCAPI_RNGAPP),y)
LIBKCAPI_CONF_OPTS += --enable-kcapi-rngapp
else