Ubuntu 8.10 ThinkPad X200でWXGA(1280x800)表示

ThinkPad X200 + Ubuntu 8.10でWXGA(1280x800)の解像度を利用できるようにする。
Ubuntu 8.04では特になにもせずともWXGAで利用できていたが、8.10の場合XGAで認識されてしまう。
xorg.confを以下のように修正し、WXGAの解像度を出せるようにする。


Section "Device"
Identifier "Configured Video Device"
Driver "intel"
Option "monitor-HDMI-1" "HDMI-1"
Option "monitor-HDMI-2" "HDMI-2"
EndSection


Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Monitor"
Identifier "HDMI-1"
Option "Ignore" "True"
EndSection

Section "Monitor"
Identifier "HDMI-2"
Option "Ignore" "True"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Modes "1280x800" "1024x768"
Virtual 2432 864
EndSubSection
EndSection