mirror of
https://pagure.io/fedora-kickstarts.git
synced 2024-11-03 15:34:22 +00:00
21 lines
348 B
Plaintext
21 lines
348 B
Plaintext
%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
|