Mario Limonciello
Mario Limonciello
> @superm1 any ideas on where else we should be getting the efi framebuffer size from? I was slightly surprised to see it disappear... I suspect this is related to...
How about `/sys/class/graphics/fb0/modes`? For reference on my side this is everything I see: ``` ❯ grep -v /sys/class/graphics/fb0/* /sys/class/graphics/fb0/dev:29:0 grep: /sys/class/graphics/fb0/device: Is a directory /sys/class/graphics/fb0/modes:U:2880x1920p-0 /sys/class/graphics/fb0/name:amdgpudrmfb /sys/class/graphics/fb0/pan:0,0 grep: /sys/class/graphics/fb0/power: Is...
Ok, as another idea, can we just use the preferred mode advertised in the edid on the internal panel (if present)?
Example, in `drm_info` can find the primary one and the preferred modes ``` Node: /dev/dri/card0 ├───Driver: amdgpu (AMD GPU) version 3.58.0 (0) │ ├───DRM_CLIENT_CAP_STEREO_3D supported │ ├───DRM_CLIENT_CAP_UNIVERSAL_PLANES supported │ ├───DRM_CLIENT_CAP_ATOMIC...
> Example, in `drm_info` can find the primary one and the preferred modes > > ``` > Node: /dev/dri/card0 > ├───Driver: amdgpu (AMD GPU) version 3.58.0 (0) > │ ├───DRM_CLIENT_CAP_STEREO_3D...
Here is how to disable it temporarily: https://fwupd.github.io/libfwupdplugin/fwupd.conf.html#uefi_capsule-parameters Restart the daemon after you've disabled it and it should show up in fwupdmgr get-devices output as NVRAM instead of capsule on...
> Mind if I nak this until I've got the gudev series done? I think this code goes away long term. Well I was thinking it actually makes the series...
@hughsie, ping, review this one?
I'd suggest use the fwupd development environment. You don't need to actually install into filesystem. https://fwupd.github.io/libfwupdplugin/building.html
Sure I think finding the root cause is the right direction, I just wanted to mention a workaround is the fwupd development environment. It works very similarly to an installer...