xserver-xorg-input-evdev 1:1.2.0-1ubuntu2

UbuntuHardy)でxserver-xorg-input-evdevのアップデートによって、evdevのマニュアルがv1.2.0用のものになったのでhttp://d.hatena.ne.jp/tksmashiw/20080305の内容を修正した。
デフォルトでタッチパッドチルトホイールに対応できているか調べるためとxorg.confのクリーンアップを兼ねて

$ []sudo dpkg-reconfigure xserver-xorg-input-evdev[]

してみたところ、タッチパッドは動作するもののEdgeScrollが効かず、マウスもチルトホイールが効かないので、再度手動でxorg.confを修正した。

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"jp106"
        Option          "XkbLayout"     "jp,jp"
#       Option          "XkbVariant"    "latin,"
#       Option          "XkbOptions"    "grp:alt_shift_toggle,lv3:ralt_switch,grp_led:scroll"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
#	Driver		"vmmouse"
	Driver		"evdev"
	Option		"Path"	"/dev/input/by-id/usb-413c_Dell_Premium_USB_Optical_Mouse-event-mouse"
	Option		"CorePointer"
	Option		"RelHWHEELMapTo"	"Buttons 7 6"
EndSection

Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
#	Option		"HorizEdgeScroll"	"0"
	Option		"TouchpadOff"	"1"
	Option		"SHMConfig"	"true"
	Option		"LeftEdge"	"100"
	Option		"RightEdge"	"900"
	Option		"TopEdge"	"200"
	Option		"BottomEdge"	"650"
	Option		"FingerLow"	"14"
	Option		"FingerHigh"	"15"
	Option		"MaxTapTime"	"180"
	Option		"MaxTapMove"	"110"
	Option		"SingleTapTimeout"	"100"
	Option		"FastTaps"	"1"
	Option		"EmulateMidButtonTime"	"75"
	Option		"LTCornerButton"	"2"
	Option		"VertScrollDelta"	"16"
	Option		"HorizScrollDelta"	"16"
	Option		"VertEdgeScroll"	"true"
	Option		"HorizEdgeScroll"	"true"
	Option		"MinSpeed"	"0.5"
	Option		"MaxSpeed"	"1.50"
	Option		"AccelFactor"	"0.04"
	Option		"LockedDrags"	"true"
	Option		"LockedDragTimeout"	"400"
EndSection

Section "Device"
	Identifier	"Configured Video Device"
EndSection

Section "Monitor"
	Identifier	"Configured Monitor"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Synaptics Touchpad"
EndSection

タッチパッドについては、xorg.conf

$ []synclient -l[]

の出力を突き合わせると、HorizEdgeScrollとTouchpadOffの設定が反映されていないようだ。
GDMでは反映されているが、GNOMEログイン後に元に戻ってしまう様だ。
つづく...