Comment 4 for bug 1263034

Revision history for this message
Oliver Marks (oly) wrote :

okay now got it working with the intel driver using the settings below.

add to linux boot params in grub video=VGA-1:1368x768

create the below then your desktop will work with intel driver

/usr/share/X11/xorg.conf.d/10-monitor.conf

Section "Monitor"
    Identifier "T100 Display"
    Modeline "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync
    Option "PreferredMode" "1368x768_60.00"
EndSection

Section "Device"
    Identifier "Intel Valley View"
    Driver "i915"
    Option "Monitor-DVI-0" "External DVI"
EndSection

Section "Screen"
    Identifier "Primary Screen"
    Device "Intel Valley View"
    Monitor "T100 Display"
    DefaultDepth 24
    SubSection "Display"
        Depth 24
        Modes "1368x768"
    EndSubSection
EndSection

Section "ServerLayout"
        Identifier "Default Layout"
        Screen "Primary Screen"
EndSection