Fix weston-simple-egl overlay detection for Adreno GLVND vendor JSON#312
Merged
abbajaj806 merged 1 commit intoqualcomm-linux:mainfrom Feb 24, 2026
Merged
Fix weston-simple-egl overlay detection for Adreno GLVND vendor JSON#312abbajaj806 merged 1 commit intoqualcomm-linux:mainfrom
abbajaj806 merged 1 commit intoqualcomm-linux:mainfrom
Conversation
…endor JSON The test previously detected overlay builds only when a file matching /usr/share/glvnd/egl_vendor.d/*EGL_adreno.json existed. Some images use the GLVND vendor filename 10_adreno.json instead, causing overlay builds to be misclassified as base. Update detection to scan common GLVND vendor directories and accept both *adreno*.json and *EGL_adreno*.json patterns. Log the detected vendor JSON path when overlay is present. Signed-off-by: Srikanth Muppandam <smuppand@qti.qualcomm.com>
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.
This PR fixes the build flavour detection logic in the weston-simple-egl test and also partially #310 where the build falvor detection is misleading.
Problem
/usr/share/glvnd/egl_vendor.d/*EGL_adreno.json
was present.
overlay builds were incorrectly reported as “base”.
Fix
the broader detection.