XOrg-6.8.2-0vl7.9にするとdual headが動かなくなった。

dual headどころか、外部LCDのみしかつかなくなった。カーネルのせいではない。
前のバージョンではちゃんと動いていたのに....

/var/log/Xorg.0.logに
"Only one monitor detected. Second screen will not be created."
とあるので、これでググルとxorg.conf

Option "MonitorLayout" "LVDS,CRT"

を加えるべしとある。
http://forums.gentoo.org/viewtopic.php?t=99104&highlight=radeon+7500+dual+head

そこで、以下の様に/etc/X11/xorg.confを変更

Section "Device"
        Identifier "ATI Radeon Mobility M6 0"
        Driver "radeon"
        BoardName "Unknown"
        Screen 0
        Option "BusType" "AGP"
        Option "AGPMode" "4"
        Option "AGPFastWrite" "1"
        Option "Monitor Layout" "LVDS,CRT"
        Option "DynamicClocks" "on"
        Option "DPMS" "on"
        BusID "1:0:0"
EndSection

Section "Device"
        Identifier "ATI Radeon Mobility M6 1"
        Driver "radeon"
        Screen 1
        Option "DynamicClocks" "on"
        Option "DPMS" "on"
        BoardName "Unknown"
        BusID "1:0:0"
        Option "hw cursor" "off"
EndSection