[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:47071] 外部ディスプレイの解像度 on Let's note CF-T4



こんばんわ、西畑です。

現在、Let's note CF-T4 にて sid を動かしています。

CF-T4 では、内部ディスプレイ(LCD)の解像度が XGA(1024*768) なので、
X.Org でデバイスのドライバを i810 にして表示しています。

そこで、外部ディスプレイに表示させるときの質問です。
やりたいことは、外部ディスプレイ(CRT)で UXGA(1600*1200) を使うことです。
できれば、外部ディスプレイに出力中は、LCD は off にしたいです。

試してみた方法は、
i)   i810switch を使う。
ii)  i810 ではなく vesa を使う。
iii) i810 + 915resolution を使う。
iv)  i855crt を使う。
です。

i) では、
・画面が揺れる
・解像度が XGA のまま
となってしまいます。


ii) では、
・Option  "MonitorLayout" "CRT" が無効になって外部出力ができない


iii) では、
xorg.conf に、

SubSection "Display"
  Depth           24
  Modes           "1024x768" "800x600" "640x480"
EndSubSection

を追加し (/etc/X11/xorg.conf は最後に載せています。)、
/etc/default/915resolution を、

MODE=5a
XRESO=1600
YRESO=1200
BIT=32

と書き換えて、
# /etc/init.d/915resolution restartx
$ startx -- -layout DualDisplay
とすると、/var/log/Xorg.log に

(II) I810(0): Not using mode "1600x1200" (no mode of this name)
(II) I810(0): Not using mode "1280x1024" (no mode of this name)
(II) I810(0): Not using mode "1024x768" (no mode of this name)
(II) I810(0): Not using mode "832x624" (no mode of this name)
(II) I810(0): Not using mode "800x600" (no mode of this name)
(II) I810(0): Not using mode "720x400" (no mode of this name)
(II) I810(0): Increasing the scanline pitch to allow tiling mode (640 ->
1024).
(--) I810(0): Virtual size is 640x480 (pitch 1024)
(**) I810(0): *Built-in mode "640x480"

となって、VGA でしか表示できません。


iv) では、
http://sourceforge.net/projects/i855crt から、
i855crt-0.4.tar.gz を取ってきて、中に入ってるバイナリを使うと、

$ ./i855crt on 1600x1200@70

Intel 855GM CRT out driver V0.4
Copyright (C) Merello Andrea 2004

found mode 1600x1200@70
No know videocard has been found.

となってしまいます。


結局、どの方法でも、外部ディスプレイに UXGA 表示できませんでした。
何か間違い、アドバイス等あれば、よろしくお願いします。


また、/etc/X11/xorg.conf は、以下のようにしています。

Section "Files"
        FontPath        "unix/:7100"
        FontPath        "/usr/share/fonts/X11/misc"
        FontPath        "/usr/lib/X11/fonts/misc"
        FontPath        "/usr/share/fonts/X11/cyrillic"
        FontPath        "/usr/lib/X11/fonts/cyrillic"
        FontPath        "/usr/lib/X11/fonts/100dpi/:unscaled"
        FontPath        "/usr/lib/X11/fonts/75dpi/:unscaled"
        FontPath        "/usr/share/fonts/X11/Type1"
        FontPath        "/usr/lib/X11/fonts/Type1"
        FontPath        "/usr/share/fonts/X11/CID"
        FontPath        "/usr/lib/X11/fonts/CID"
        FontPath        "/usr/share/fonts/X11/100dpi"
        FontPath        "/usr/lib/X11/fonts/100dpi"
        FontPath        "/usr/share/fonts/X11/75dpi"
        FontPath        "/usr/lib/X11/fonts/75dpi"
  FontPath  "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
        Load    "bitmap"
        Load    "dbe"
        Load    "ddc"
        Load    "dri"
        Load    "evdev"
        Load    "extmod"
        Load    "freetype"
        Load    "glx"
        Load    "int10"
        Load    "record"
        Load    "type1"
        Load    "v4l"
        Load    "vbe"
EndSection

Section "InputDevice"
        Identifier      "Generic Keyboard"
        Driver          "keyboard"
        Option          "CoreKeyboard"
        Option          "XkbRules"      "xorg"
        Option          "XkbModel"      "jp106"
        Option          "XkbLayout"     "jp"
        Option          "XkbOptions"    "jp106"
EndSection

Section "InputDevice"
        Identifier      "Configured Mouse"
        Driver          "mouse"
        Option          "CorePointer"
        Option          "Device"                "/dev/input/mice"
        Option          "Protocol"              "ImPS/2"
        Option          "Emulate3Buttons"       "true"
        Option          "ZAxisMapping"          "4 5"
EndSection
Section "InputDevice"
        Identifier      "Synaptics Touchpad"
        Driver          "synaptics"
        Option          "SendCoreEvents"        "true"
        Option          "Device"                "/dev/psaux"
        Option          "Protocol"              "auto-dev"
        Option          "HorizScrollDelta"      "0"
EndSection

Section "Device"
        Identifier      "Intel Corporation Mobile 915GM/GMS/910GML
Express Graphics Controller"
        Driver          "i810"
        BusID           "PCI:0:2:0"
        VideoRam        131072
        Option          "UseFBDev"              "true"
EndSection

Section "Device"
        Identifier      "extCard"
        Driver          "i810"
        Option          "MonitorLayout" "CRT"
        BusID           "PCI:0:2:0"
        VideoRam        131072
EndSection

Section "Monitor"
        Identifier      "Generic Monitor"
        Option          "DPMS"
        HorizSync       28-49
        VertRefresh     43-72
EndSection

Section "Monitor"
        Identifier      "HM903/DT"
        Option          "DPMS"
        HorizSync       28-33
        VertRefresh     43-72
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "Intel Corporation Mobile 915GM/GMS/910GML
Express Graphics Controller"
        Monitor         "Generic Monitor"
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "Screen"
        Identifier  "extScreen"
        Device  "extCard"
        Monitor "HM903/DT"
        Option  "backingstore" "true"
        DefaultDepth 24
        SubSection "Display"
                Depth 16
                Modes "1600x1200" "1280x1024" "1024x768" "832x624"
"800x600" "720x400" "640x480"
        EndSubSection
        SubSection "Display"
                Depth 24
                Modes "1600x1200" "1280x1024" "1024x768" "832x624"
"800x600" "720x400" "640x480"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse" "CorePointer"
        InputDevice     "Synaptics Touchpad"
EndSection

Section "ServerLayout"
        Identifier      "DualDisplay"
        Screen          "extScreen"
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
        InputDevice     "Synaptics Touchpad"
EndSection

Section "DRI"
        Mode    0666
EndSection