工人舎 SA5SX で Debian をインストールしたが xorg がうまく動かなかった。 最初は、xserver-xorg-video-vesa/etch を入れて、標準的設定で使っていたが、 画面サイズ 1024x768 となり、1024x600 で動かなかった。 その他のパッケージを色々と更新しているうちに、xorg が動かなくなっていた。
xserver-xorg-video-amd を使う。
ということで、AMD/Geode LX のドライバをちゃんと試す。 ただ、リフレッシュレートの設定が悪いのか、X を止めると画面が白くなって、 グラフィック機能が動かなくなる。
追記:最新では xserver-xorg-video-geode に変更となっ。# aptitude install xserver-xorg-video-amd/unstable ≪< /etc/X11/xorg.conf ≫> : Section "Device" Identifier "Generic Video Card" # Driver "amd" # 2008-03-03 Driver "geode" # ドライバ名を更新(2008-04-09) BusID "PCI:0:1:1" Option "NoAccel" Option "UseFBDev" "true" Option "PanelGeometry" "1024x600" EndSection Section "Monitor" Identifier "Generic Monitor" Option "DPMS" HorizSync 28-51 VertRefresh 43-70 UseModes "Modes[0]" EndSection Section "Modes" Identifier "Modes[0]" # "UseModes 1024x600" で検索して見つけたモードラインを適当に... ModeLine "1024x600" 53.78 1024 1072 1176 1328 600 601 604 623 ModeLine "1024x600" 52.95 1024 1072 1176 1328 600 601 604 623 ModeLine "1024x600" 51.49 1024 1064 1168 1312 600 601 604 623 EndSection Section "Screen" Identifier "Default Screen" Device "Generic Video Card" Monitor "Generic Monitor" DefaultDepth 16 SubSection "Display" Modes "1024x600" EndSubSection EndSection :
-
以前、xorg が動かず晒しておいた xorg.conf をみて
tmorimoto 氏より、動いたという連絡をもらう。
tmorimoto氏のメモ - Driver "amd" → Driver "geode" に変更になった。