From: Trevor Woerner <twoerner@gmail.com>
To: openembedded-core@lists.openembedded.org
Cc: randy.macleod@windriver.com, Harish.Sadineni@windriver.com
Subject: [PATCH 1/2] oeqa/sdk: update cryptodev to a revision that builds on kernel 6.18
Date: Wed, 5 Aug 2026 02:57:17 -0400 [thread overview]
Message-ID: <20260805065718.3497815-2-twoerner@gmail.com> (raw)
In-Reply-To: <20260805065718.3497815-1-twoerner@gmail.com>
The out-of-tree kernel module test pins a cryptodev-linux revision from
before the 1.14 release, which predates the removal of
crypto_ahash_alignmask() from the kernel and so no longer compiles:
cryptlib.c:384:28: error: implicit declaration of function
'crypto_ahash_alignmask' [-Wimplicit-function-declaration]
Move to upstream's "Fix build for Linux 6.18-rc1", which is the revision
that restores compatibility.
AI-Generated: codex/claude-opus 5 (xhigh)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
meta/lib/oeqa/sdk/cases/kmod.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/lib/oeqa/sdk/cases/kmod.py b/meta/lib/oeqa/sdk/cases/kmod.py
index 0c4d8ddb543f..1be23e994fd2 100644
--- a/meta/lib/oeqa/sdk/cases/kmod.py
+++ b/meta/lib/oeqa/sdk/cases/kmod.py
@@ -31,8 +31,8 @@ class KernelModuleTest(OESDKTestCase):
with tempfile.TemporaryDirectory(prefix="cryptodev", dir=self.tc.sdk_dir) as testdir:
git_url = "https://github.com/cryptodev-linux/cryptodev-linux"
- # This is a knnown-good commit post-1.13 that builds with kernel 6.7+
- git_sha = "bb8bc7cf60d2c0b097c8b3b0e807f805b577a53f"
+ # This is a known-good commit post-1.14 that builds with kernel 6.18+
+ git_sha = "08644db02d43478f802755903212f5ee506af73b"
sourcedir = os.path.join(testdir, "cryptodev-linux")
subprocess.check_output(["git", "clone", git_url, sourcedir], stderr=subprocess.STDOUT)
--
2.50.0.173.g8b6f19ccfc3a
next prev parent reply other threads:[~2026-08-05 6:57 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-05 6:57 [PATCH 0/2] fix the SDK kernel module test Trevor Woerner
2026-08-05 6:57 ` Trevor Woerner [this message]
2026-08-05 6:57 ` [PATCH 2/2] toolchain-scripts, oeqa/sdk: build the kernel's host tools with a host pkg-config Trevor Woerner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260805065718.3497815-2-twoerner@gmail.com \
--to=twoerner@gmail.com \
--cc=Harish.Sadineni@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
--cc=randy.macleod@windriver.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.