2013-12-15 13:20:39 +01:00
|
|
|
comment "cryptodev needs a Linux kernel to be built"
|
|
|
|
depends on !BR2_LINUX_KERNEL
|
|
|
|
|
2013-04-27 12:09:46 +02:00
|
|
|
config BR2_PACKAGE_CRYPTODEV
|
2013-12-15 13:20:39 +01:00
|
|
|
bool "cryptodev"
|
2013-04-27 12:09:46 +02:00
|
|
|
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
|
2014-06-08 16:15:07 +02:00
|
|
|
select BR2_PACKAGE_HAS_CRYPTODEV
|
2013-04-27 12:09:46 +02:00
|
|
|
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"
|
2014-06-08 16:15:07 +02:00
|
|
|
select BR2_PACKAGE_HAS_CRYPTODEV
|
2013-04-27 12:09:46 +02:00
|
|
|
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
|
|
|
|
|
2014-04-05 17:21:55 +02:00
|
|
|
config BR2_PACKAGE_HAS_CRYPTODEV
|
2014-06-08 16:15:07 +02:00
|
|
|
bool
|
2014-04-05 17:21:55 +02:00
|
|
|
|
2013-12-20 23:27:59 +01:00
|
|
|
config BR2_PACKAGE_PROVIDES_CRYPTODEV
|
|
|
|
string
|
|
|
|
default "cryptodev-linux" if BR2_PACKAGE_CRYPTODEV_LINUX
|
|
|
|
default "ocf-linux" if BR2_PACKAGE_OCF_LINUX
|
|
|
|
|
2013-04-27 12:09:46 +02:00
|
|
|
endif
|