Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
require cryptodev.inc
|
||||
|
||||
SUMMARY = "A /dev/crypto device driver header file"
|
||||
|
||||
do_compile[noexec] = "1"
|
||||
|
||||
# Just install cryptodev.h which is the only header file needed to be exported
|
||||
do_install() {
|
||||
install -D ${S}/crypto/cryptodev.h ${D}${includedir}/crypto/cryptodev.h
|
||||
}
|
||||
|
||||
ALLOW_EMPTY:${PN} = "1"
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
@@ -0,0 +1,13 @@
|
||||
require cryptodev.inc
|
||||
|
||||
SUMMARY = "A /dev/crypto device driver kernel module"
|
||||
|
||||
inherit module
|
||||
|
||||
# Header file provided by a separate package
|
||||
DEPENDS += "cryptodev-linux"
|
||||
|
||||
EXTRA_OEMAKE='KERNEL_DIR="${STAGING_KERNEL_DIR}" PREFIX="${D}"'
|
||||
|
||||
RCONFLICTS:${PN} = "ocf-linux"
|
||||
RREPLACES:${PN} = "ocf-linux"
|
||||
@@ -0,0 +1,17 @@
|
||||
require cryptodev.inc
|
||||
|
||||
SUMMARY = "A test suite for /dev/crypto device driver"
|
||||
|
||||
DEPENDS += "openssl"
|
||||
|
||||
EXTRA_OEMAKE='KERNEL_DIR="${STAGING_EXECPREFIXDIR}" PREFIX="${D}"'
|
||||
|
||||
do_compile() {
|
||||
oe_runmake tests
|
||||
}
|
||||
|
||||
do_install() {
|
||||
oe_runmake install_tests
|
||||
}
|
||||
|
||||
FILES:${PN} = "${bindir}/*"
|
||||
18
sources/poky/meta/recipes-kernel/cryptodev/cryptodev.inc
Normal file
18
sources/poky/meta/recipes-kernel/cryptodev/cryptodev.inc
Normal file
@@ -0,0 +1,18 @@
|
||||
HOMEPAGE = "http://cryptodev-linux.org/"
|
||||
DESCRIPTION = "Cryptodev-linux is a device that allows access to Linux kernel \
|
||||
cryptographic drivers; thus allowing of userspace applications to take advantage \
|
||||
of hardware accelerators. Cryptodev-linux is implemented as a standalone \
|
||||
module that requires no dependencies other than a stock linux kernel. Its \
|
||||
API is compatible with OpenBSD's cryptodev userspace API (/dev/crypto)."
|
||||
|
||||
LICENSE = "GPL-2.0-only"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
||||
|
||||
SRC_URI = "git://github.com/cryptodev-linux/cryptodev-linux;branch=master;protocol=https \
|
||||
"
|
||||
SRCREV = "135cbff90af2ba97d88f1472be595ce78721972c"
|
||||
PV = "1.14"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
CLEANBROKEN = "1"
|
||||
Reference in New Issue
Block a user