76c07120e7
Since this package is implemented via a choice rather than the usual separate-package providers, we only need BR2_PACKAGE_HAS_CRYPTODEV to be always defined when the 'cryptodev' package is selected. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Eric Le Bihan <eric.le.bihan.dev@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Thomas De Schampheleire <patrickdepinguin@gmail.com> Cc: Mike Zick <minimod@morethan.org> Reviewed-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
comment "cryptodev needs a Linux kernel to be built"
|
|
depends on !BR2_LINUX_KERNEL
|
|
|
|
config BR2_PACKAGE_CRYPTODEV
|
|
bool "cryptodev"
|
|
depends on BR2_LINUX_KERNEL
|
|
help
|
|
Select the desired cryptodev implementation.
|
|
|
|
if BR2_PACKAGE_CRYPTODEV
|
|
|
|
choice
|
|
prompt "cryptodev variant"
|
|
default BR2_PACKAGE_CRYPTODEV_LINUX if !BR2_microblaze
|
|
help
|
|
Select the cryptodev implementation.
|
|
|
|
config BR2_PACKAGE_CRYPTODEV_LINUX
|
|
bool "cryptodev-linux"
|
|
depends on !BR2_microblaze
|
|
help
|
|
Cryptodev-linux is a device that allows access to Linux kernel
|
|
cryptographic drivers; thus allowing userspace applications
|
|
to take advantage of hardware accelerators.
|
|
|
|
http://cryptodev-linux.org/index.html
|
|
|
|
config BR2_PACKAGE_OCF_LINUX
|
|
bool "ocf-linux"
|
|
help
|
|
OCF-Linux is a Linux port of the OpenBSD/FreeBSD Cryptographic
|
|
Framework (OCF). This port aims to bring full asynchronous HW/SW
|
|
crypto acceleration to the Linux kernel and applications
|
|
running under Linux.
|
|
|
|
http://ocf-linux.sourceforge.net/
|
|
|
|
endchoice
|
|
|
|
config BR2_PACKAGE_HAS_CRYPTODEV
|
|
def_bool y
|
|
|
|
config BR2_PACKAGE_PROVIDES_CRYPTODEV
|
|
string
|
|
default "cryptodev-linux" if BR2_PACKAGE_CRYPTODEV_LINUX
|
|
default "ocf-linux" if BR2_PACKAGE_OCF_LINUX
|
|
|
|
endif
|