Mads Kiilerich wrote on 08.08.2010 20:12:
> [...]
> I guess that should be a general Fedora feature?

In case anybody is interested: I was in the need to foce Vesa in the
past and added below *hack* to a kickstart file somewhere in the
fedora-live-base.ks section between
|cat > /etc/rc.d/init.d/livesys-late << EOF
and
|EOF
to make "xdriver=vesa" work on the livecd.

CU
knurd

P.S.: Yes, it has bugs (hardcoded german keyboard and only works with
"vesa"), that's why I called it a hack earlier ;-)

"""
# configure X, allowing user to override xdriver
if [ "\$xdriver" == "vesa" ]; then
  cat > /etc/X11/xorg.conf <<FOE
# Xorg configuration created by system-config-display
Section "ServerLayout"
        Identifier     "Default Layout"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
# keyboard added by system-config-display
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "de"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "\$xdriver"
EndSection

Section "Monitor"
        Identifier  "Monitor0"
        HorizSync    30-69
        VertRefresh  60-75
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        Monitor    "Monitor0"
        SubSection "Display"
                Modes "1024x768" "800x600"
        EndSubSection
EndSection
FOE
fi
"""
--
livecd mailing list
[email protected]
https://admin.fedoraproject.org/mailman/listinfo/livecd

Reply via email to