summaryrefslogtreecommitdiffstats
path: root/fedora-arm-xbase.ks
blob: aec2872ca325a4c0820b2e927a20673cf0181197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
%packages
@base-x
@fonts
@input-methods
@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