mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
(From OE-Core rev: 7d1532e4dc0dfe78660bb076018847aaf3fa8f2f) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
372 B
BlitzBasic
22 lines
372 B
BlitzBasic
require cryptodev.inc
|
|
|
|
SUMMARY = "A test suite for /dev/crypto device driver"
|
|
|
|
DEPENDS += "openssl"
|
|
|
|
SRC_URI += " \
|
|
file://0001-Add-the-compile-and-install-rules-for-cryptodev-test.patch \
|
|
"
|
|
|
|
EXTRA_OEMAKE='KERNEL_DIR="${STAGING_EXECPREFIXDIR}" PREFIX="${D}"'
|
|
|
|
do_compile() {
|
|
oe_runmake testprogs
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake install_tests
|
|
}
|
|
|
|
FILES_${PN} = "${bindir}/*"
|