From 3833a5b215e771da1ffb2aa3fea4f7dbf54815cd Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Fri, 7 Aug 2026 06:26:16 +0000 Subject: [PATCH] open62541: fix mdnsd do_fetch failure, submodule moved to troglobit/mdnsd The bundled mdnsd dependency pins SRCREV c1be962b37e4b952625d9b0a873e5ca619b1a35a, but SRC_URI fetched it from github.com/Pro/mdnsd where that commit does not exist, so do_fetch fails: ERROR: open62541-1.5.6-r0 do_fetch: Fetcher failure: Unable to find revision c1be962b37e4b952625d9b0a873e5ca619b1a35a in branch master even from upstream open62541's deps/mdnsd submodule now points at github.com/troglobit/mdnsd (per .gitmodules at the pinned opcua SRCREV), and c1be962b is present on that repo's master branch. Repoint the mdnsd SRC_URI accordingly. The deps/mdnsd/LICENSE md5 (499b4033f2cdae5ae544018b57f81007) is unchanged in troglobit/mdnsd at this commit. Verified via `bitbake -c fetch open62541`: all sub-fetches, including mdnsd, now succeed. AI-Generated: Uses Claude Code Signed-off-by: Khem Raj --- meta-networking/recipes-protocols/opcua/open62541_1.5.6.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-networking/recipes-protocols/opcua/open62541_1.5.6.bb b/meta-networking/recipes-protocols/opcua/open62541_1.5.6.bb index ad284778e3..adb500c954 100644 --- a/meta-networking/recipes-protocols/opcua/open62541_1.5.6.bb +++ b/meta-networking/recipes-protocols/opcua/open62541_1.5.6.bb @@ -15,7 +15,7 @@ SRCREV_mqtt-c = "0f4c34c8cc00b16cfee094745d68b8cdbaecd8e0" SRC_URI = " \ git://github.com/open62541/open62541.git;name=opcua;branch=1.5;protocol=https \ - git://github.com/Pro/mdnsd.git;name=mdnsd;protocol=https;branch=master;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/deps/mdnsd \ + git://github.com/troglobit/mdnsd.git;name=mdnsd;protocol=https;branch=master;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/deps/mdnsd \ git://github.com/OPCFoundation/UA-Nodeset;name=ua-nodeset;protocol=https;branch=latest;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/deps/ua-nodeset \ git://github.com/LiamBindle/MQTT-C.git;name=mqtt-c;protocol=https;branch=master;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/deps/mqtt-c \ "