From owner-freebsd-mobile Wed Feb 27 8:51:30 2002 Delivered-To: freebsd-mobile@freebsd.org Received: from precipice.4gh.net (washdc3-ar2-182-234.elnk.dsl.gtei.net [4.43.182.234]) by hub.freebsd.org (Postfix) with ESMTP id 5A46C37B417; Wed, 27 Feb 2002 08:51:26 -0800 (PST) Received: from localhost (stuartb@localhost) by precipice.4gh.net (8.11.6/8.11.6) with ESMTP id g1RGpNZ47400; Wed, 27 Feb 2002 11:51:24 -0500 (EST) (envelope-from stuartb@4gh.net) Date: Wed, 27 Feb 2002 11:51:22 -0500 (EST) From: Stuart Barkley X-X-Sender: stuartb@4gh.dyndns.org To: Ying-Chieh Liao Cc: freebsd-mobile@FreeBSD.ORG Subject: Touchpad on Toshiba Satellite 1005-S157 In-Reply-To: <20020227090745.GA97111@terry.dragon2.net> Message-ID: <20020227114316.U45995-100000@4gh.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org 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