put in a X.org config snippet to set the driver to fbdev on arm devices

This commit is contained in:
Dennis Gilmore 2013-05-31 19:19:51 -05:00
parent 244b6729d1
commit 8455d83948
1 changed files with 13 additions and 0 deletions

View File

@ -5,3 +5,16 @@
@multimedia
@printing
%end
%post
# X on arm does not detect the driver needed correctly so we need a snippet to set something
# using fbdev as the lowest common denominator.
cat > /etc/X11/xorg.conf.d/fbdev.conf <<EOF
Section "Device"
Identifier "Display"
Driver "fbdev"
EndSection
EOF
%end