-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include the graphics VBT file in DTS HCL log dumps #1118
Comments
+1, I've also recently wished we dumped the active VBT in HCL reports |
Can be done. But I noticed the VBT from sysfs is 3 bytes smaller than should be... Not sure what is the cause of this. |
Is copying all
|
We are only interested in i915 VBT I think, others may only make the report unnecessarily larger. @mkopec WDYT? |
I'm pretty sure VBT is Intel specific so it doesn't make sense to look for anything other than The bigger issue is that the intel GPU may get a different device number than 0, for example depending on kernel version, so I'd set the wildcard like this:
|
The problem you're addressing (if any)
One crucial component of firmware is the graphics VBT file. Right now, we either have to extract it from stock firmware (and usually guess which one to use), or boot Linux and obtain the working file ourselves.
Describe the solution you'd like
We can find the active, working VBT in debugfs, at
/sys/kernel/debug/dri/0/*_vbt
, for examplei915_vbt
. This can be automatically copied and included in the HCL dumps.Where is the value to a user, and who might that user be?
It would reduce time spent on a trivial, repetitive activity and make the HCL dumps even more useful
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: