Date: Wed, 27 Feb 2002 11:51:22 -0500 (EST) From: Stuart Barkley <stuartb@4gh.net> To: Ying-Chieh Liao <ijliao@FreeBSD.ORG> Cc: freebsd-mobile@FreeBSD.ORG Subject: Touchpad on Toshiba Satellite 1005-S157 Message-ID: <20020227114316.U45995-100000@4gh.dyndns.org> In-Reply-To: <20020227090745.GA97111@terry.dragon2.net>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 27 Feb 2002, Ying-Chieh Liao wrote:
> On Wed, Feb 27, 2002 at 01:51:36 -0500, Stuart Barkley wrote:
> > I'm attempting to install FreeBSD 4.5 and X on my new Toshiba
> > Satellite 1005-S157. I've dealt with booting the system (device pcm
> > necessary) and getting the touchpad to work (patch to psm).
>
> what patch ?
> I cant get my trackpoint working (toshiba portege 3490)
> could you tell me where the patch is ?
I created the following patch to address the problems I'm seeing with
the Toshiba touchpad. This makes the touchpad work, but the
resolution doesn't seem right and so far I haven't been able to change
it. The patch applies to 4.5-RELEASE, but should work on -STABLE.
-CURRENT has changed a lot, but it looks like it would also apply
there.
--- /sys/isa/psm.c.orig Mon Jul 30 12:29:05 2001
+++ /sys/isa/psm.c Tue Feb 26 23:41:27 2002
@@ -635,6 +635,7 @@
switch((i = test_aux_port(kbdc))) {
case 1: /* ignore this error */
+ case 2: /* ignore this error */
case PSM_ACK:
if (verbose)
log(LOG_DEBUG, "psm%d: strange result for test aux port (%d).\n",
@@ -896,9 +897,11 @@
* error code. Even if the controller HAS error with the aux port,
* it will be detected later...
* XXX: another incompatible controller returns PSM_ACK (0xfa)...
+ * XXX: Toshiba Satellite 1005-S157 returns 2...
*/
switch ((i = test_aux_port(sc->kbdc))) {
case 1: /* ignore this error */
+ case 2: /* ignore this error */
case PSM_ACK:
if (verbose)
printf("psm%d: strange result for test aux port (%d).\n",
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-mobile" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020227114316.U45995-100000>
