fsl-imx-base.inc: Fix fetcher failure for Qt 5.15.2 [YOCIMX-6895]

The Qt bugfix branches are removed, so the meta-qt5 recipes are broken:
```
ERROR: qtbase-5.15.2+gitAUTOINC+40143c189b-r0 do_fetch: Fetcher failure: Unable to find revision 40143c189b7c1bf3c2058b77d00ea5c4e3be8b28 in branch 5.15.2 even from upstream
ERROR: qtbase-5.15.2+gitAUTOINC+40143c189b-r0 do_fetch: Fetcher failure for URL: 'git://code.qt.io/qt/qtbase.git;name=qtbase;branch=5.15.2;protocol=git'. Unable to fetch URL from any source.
```

Fix the problem by disabling branch checking.

Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
(cherry picked from commit 4bba4a5dc9)
(cherry picked from commit 60905dc94d)
(cherry picked from commit d176aee356)
This commit is contained in:
Tom Hochstein 2023-04-17 10:07:13 -05:00
parent db714b60aa
commit 8533f93719

View File

@ -12,3 +12,7 @@ POKY_DEFAULT_DISTRO_FEATURES_remove = "wayland ${REMOVE_VULKAN_FEATURE}"
POKY_DEFAULT_DISTRO_FEATURES_append_mx8 = " jailhouse" POKY_DEFAULT_DISTRO_FEATURES_append_mx8 = " jailhouse"
INHERIT_remove = "uninative" INHERIT_remove = "uninative"
# Set nobranch since bugfix branches like 5.15.2 were dropped
QT_MODULE_BRANCH_PARAM = "${QT_MODULE_BRANCH_PARAM_IMX}"
QT_MODULE_BRANCH_PARAM_IMX ?= "nobranch=1"