summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDennis Gilmore <dennis@ausil.us>2013-05-31 19:19:51 -0500
committerDennis Gilmore <dennis@ausil.us>2013-05-31 19:21:32 -0500
commit5eb57630b6cde60977c6cb9bf0cbfea104b7b750 (patch)
treea4fead249a124588953a08f35d9924ab08c719df
parentbc20cff021293cc5ef676e84e26e04368cd08a77 (diff)
downloadspin-kickstarts-5eb57630b6cde60977c6cb9bf0cbfea104b7b750.tar.gz
spin-kickstarts-5eb57630b6cde60977c6cb9bf0cbfea104b7b750.tar.xz
spin-kickstarts-5eb57630b6cde60977c6cb9bf0cbfea104b7b750.zip
put in a X.org config snippet to set the driver to fbdev on arm devices
-rw-r--r--fedora-arm-xbase.ks13
1 files changed, 13 insertions, 0 deletions
diff --git a/fedora-arm-xbase.ks b/fedora-arm-xbase.ks
index 2c4b513..aec2872 100644
--- a/fedora-arm-xbase.ks
+++ b/fedora-arm-xbase.ks
@@ -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