From efa6a22cdebce24cafe3ac2fc0238f515710dc7d Mon Sep 17 00:00:00 2001 From: Tomaz Zaman Date: Wed, 15 Apr 2026 13:40:55 +0200 Subject: [PATCH] gateway-dk-ask: pin ASK with libxml2 2.12+ compat fix for fmc Update ASK to a commit that adds a libxml2 compatibility patch for fmc. Newer libxml2 (2.12+) changed the xmlStructuredErrorFunc callback signature to take a const error pointer. Without the patch, fmc fails to compile against libxml2 2.12+ headers (Ubuntu Resolute and other distros with newer libxml2). --- extensions/gateway-dk-ask.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/gateway-dk-ask.sh b/extensions/gateway-dk-ask.sh index 6410957887..0081cc4c19 100644 --- a/extensions/gateway-dk-ask.sh +++ b/extensions/gateway-dk-ask.sh @@ -15,7 +15,7 @@ # Source repos and refs (pinned to match Yocto) # For local testing: set ASK_REPO="file:///path/to/ASK" — the Docker mount hook below handles it declare -g ASK_REPO="https://github.com/we-are-mono/ASK.git" -declare -g ASK_BRANCH="commit:252b6db5a274383917c7a7688c931d61409978c2" +declare -g ASK_BRANCH="commit:9ea9bda759de70f75fc994fdc8bfa83a54f66f67" declare -g FMLIB_REPO="https://github.com/nxp-qoriq/fmlib.git" declare -g FMLIB_COMMIT="7a58ecaf0d90d71d6b78d3ac7998282a472c4394" declare -g FMC_REPO="https://github.com/nxp-qoriq/fmc.git"