mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 08:48:45 +01:00
Upgrade cryptodev to new release 1.13. This resoves the Kernel build issues for 6.3.y, where Crypto API has been updated, see [1]. Refresh all layer patches with `devtool` to resolve hunks. Link: [1]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=255e48eb17684157336bd6dd98d22c1b2d9e3f43 (From OE-Core rev: dc85b747af14f5262590e72e55d2c49670cf09a7) Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 lines
331 B
BlitzBasic
14 lines
331 B
BlitzBasic
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"
|