fix(image-builder): consume WebView-v2026.07.1 Qt5 toolchain - #3185
Merged
Conversation
- Bump qt5_toolchain_url from WebView-v2026.07.0 to WebView-v2026.07.1 - The .07.1 pi2/pi3 Qt5 toolchains carry the armv7 NEON-alignment fix (arm_use_neon=false + -mno-unaligned-access), stopping the Pi 2/3 blank-screen crash-loop; validated on real Pi 2 and 32-bit Pi 3 Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]> Claude-Session: https://claude.ai/code/session_01XrDBimoWjmEyF3A4Eo9sbh
|
There was a problem hiding this comment.
Pull request overview
Updates the image builder’s Qt 5 toolchain download reference for pi2/pi3 viewer builds to consume the already-published fixed WebView toolchain release, addressing the armv7 NEON alignment crash-loop described in the PR.
Changes:
- Bumped the pinned Qt 5 toolchain release URL from
WebView-v2026.07.0toWebView-v2026.07.1. - Expanded the inline rationale comment describing why the bump is necessary for Pi 2 / 32-bit Pi 3 stability.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Issues Fixed
Ships the armv7 NEON-alignment fix to
masterby consuming the already-published fixed Qt 5 toolchain. Related forum report: https://forums.screenly.io/t/screen-stays-blank/6732Description
Bumps
qt5_toolchain_urlfromWebView-v2026.07.0toWebView-v2026.07.1so the pi2/pi3 viewer image build fetches the fixed Qt 5 toolchain tarball.The
WebView-v2026.07.1toolchain (already released: https://github.com/Screenly/Anthias/releases/tag/WebView-v2026.07.1) was rebuilt witharm_use_neon=false+ a-mno-unaligned-accesscross-compiler wrap, stripping the NEON:64block stores that fault on the Pi 2 (Cortex-A7) and 32-bit Pi 3 (Cortex-A53) — the cause of the blank-screen crash-loop.The fix lives entirely in the pre-built toolchain tarball (the Qt runtime libs), so consuming it here is a one-line URL bump; no build-script changes are needed. The toolchain build-script / rebuildability changes (
build_qt5.sh+ the Python 3.13 shims) are handled in a separate PR.Checklist
.07.1assets are verified downloadable at the exact build URL, sha256-matched)