tfischer4765 / mm-install

MIT License
1 stars 0 forks source link

Raspberry Pi 5 missing display driver #8

Open chelming opened 1 month ago

chelming commented 1 month ago

The display driver is different for the Pi 5. Creating /etc/X11/xorg.conf.d/99-v3d.conf and adding the following fixed it for me but I don't know enough about X11 to know if it's the best/correct fix.

Section "OutputClass"
Identifier "vc4"
MatchDriver "vc4"
Driver "modesetting"
Option "PrimaryGPU" "true"
EndSection

You can get the Pi version from /proc/cpuinfo. Something like awk '/^Model/ {print $5}' /proc/cpuinfo or awk -F ': ' '/^Model/ {print $2}' /proc/cpuinfo