Xorg 7.4のインストール

Xorg 7.2でAMD(ATI)製ドライバのインストールに試行錯誤した挙句、Xorg 7.4なら標準のatiドライバで対応していると知り、BLFSのsvn版に手を出す。

BLFS-svn-20090520 第23章を基本にしつつ、CBLFSも参考にしながら作業する。

Xorg 7.4 で必要になるもの

パッケージ記載使用バージョン備考
intltoolBLFS-6.3 第10章intltool-0.35.5XKeyboardConfigに必要(2009.5.27)
OpenSSLBLFS-svn-20090520 第4章openssl-0.9.8kXorg-Serverに必要(2009.5.27)

OpenSSLはBLFSではOptionalだが、CBLFSではRequiredになっている。

Xorg Server

./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man \
--localstatedir=/var --with-module-dir=/usr/lib/X11/modules \
--with-xkb-output=/var/lib/xkb --enable-install-setuid \
--disable-glx --disable-dri

Xorg driver

driverのコンパイル時には、configureの引数を付け足す。

export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
--mandir=$XORG_PREFIX/share/man --localstatedir=/var \
--with-xorg-module-dir=$XORG_PREFIX/lib/X11/modules --disable-dri"

xorg.confの調整

BLFSの"X Window System Components"の節を参照。

cat >> ~/xorg.conf.new << "EOF"
Section "ServerFlags"
        Option "AllowEmptyInput" "false"
EndSection
EOF