Ubuntu mostly works great on this laptop, except that wireless access required writing a script and by default the tap-to-click misfeature is enabled. Wireless is working fine now, but I haven't yet figured how to remove tap-to-click.
<br><br>The touchpad is an ALPS GlidePoint (<a href="http://www.alps.co.jp/index_e.htm">http://www.alps.co.jp/index_e.htm</a>), or at least that's what I gather from inserting some printk's into the mouse driver and running dmesg. This is confirmed by cat /proc/bus/input/devices, which says among other things
<br><br>I: Bus=0011 Vendor=0002 Product=0001 Version=7321<br>N: Name="PS/2 ALPS GlidePoint"<br>P: Phys=isa0060/serio4/input0<br>S: Sysfs=/class/input/input4<br>H: Handlers=mouse0 event1 ts0 <br>B: EV=7<br>B: KEY=70000 0 0 0 0 0 0 0 0
<br>B: REL=3<br><br><br><br>Here are the things I have tried so far:<br>- sudo tpconfig -t 0. This has no effect at all. I'm using tpconfig version 3.1.3, which I guess is supposed to work with ALPS.<br><br>- Various things people recommended about
Section "InputDevice", Identifier "Synaptics Touchpad" etc. in xorg.conf. None if it did any good. Eventually I removed that Section "InputDevice" and the touchpad still works, since I still have another InputDevice Section with Driver "mouse" and apparently the touchpad is being detected as a mouse.
<br><br>- Ripping out all the code for tap-to-click in the synaptics_drv driver and installing it. Of course this had no effect because the touchpad is an ALPS, though I didn't know it yet.<br><br>- Modifying /usr/src/linux-
source-2.6.17/drivers/input/mouse/alps.c, specifically changing alps_tap_mode(psmouse, 1) to alps_tap_mode(psmouse, 0) in the places where it occurs. I then recompiled the kernel using make-kpkg, installed it, rebooted, and still had the same problem.
<br><br>- There is a comment above the function alps_tap_mode() that suggests it won't work with stickpointer / GlidePoint pads like mine and gives some advice on how to change it. My attempt to follow the advice led to the following new version of that function, which DOES NOT WORK, fyi:
<br><br>/*<br> * Turn touchpad tapping on or off. The sequences are:<br> * 0xE9 0xF5 0xF5 0xF3 0x0A to enable,<br> * 0xE9 0xF5 0xF5 0xE8 0x00 to disable.<br> * My guess that 0xE9 (GetInfo) is here as a sync point.<br> * For models that also have stickpointer (DualPoints) its tapping
<br> * is controlled separately (0xE6 0xE6 0xE6 0xF3 0x14|0x0A) but<br> * we don't fiddle with it.<br> */<br>static int alps_tap_mode(struct psmouse *psmouse, int enable)<br>{<br> struct ps2dev *ps2dev = &psmouse->ps2dev;
<br> /* I'm not sure if the comment above is accurate. <br> * If it is then we should just use setrate in both cases <br> * for stickpointer (whatever that is).<br> * I'm not sure how to check for stickpointer in code, but
<br> * I'm guessing that's what I have, so I'm just hardcoding it for now.<br> * -ijt 2:37am april 4 '07 */<br> int cmd = enable ? PSMOUSE_CMD_SETRATE : PSMOUSE_CMD_SETRES;<br> int stickpoint = 1; /* FIXME: set this from a test of some kind */
<br> unsigned char tap_arg = stickpoint<br> ?(enable ? 0x14 : 0x0A)<br> :(enable ? 0x0A : 0x00);<br> int middle_stuff =<br> stickpoint ? PSMOUSE_CMD_SETSCALE11: PSMOUSE_CMD_DISABLE;
<br> unsigned char param[4];<br><br> printk("Setting ALPS tap mode to %i\n",enable);<br><br> if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO) ||<br> ps2_command(ps2dev, NULL, middle_stuff) ||
<br> ps2_command(ps2dev, NULL, middle_stuff) ||<br> ps2_command(ps2dev, &tap_arg, cmd))<br> return -1;<br><br> if (alps_get_status(psmouse, param))<br> return -1;
<br><br> return 0;<br>}<br><br>I guess now I'm going to see if there's a new version of the mouse driver in the latest kernel sources. <br><br>Tap-to-click is a cruel joke, so please help if you can.<br><br>
Thanks,<br>Issac<br><br><br><br><br><br><br><br><br>