From owner-freebsd-stable Sun Jun 30 11:55:23 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57DF437B400 for ; Sun, 30 Jun 2002 11:55:17 -0700 (PDT) Received: from precipice.4gh.net (washdc3-ar2-4-64-218-060.washdc3.elnk.dsl.genuity.net [4.64.218.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58F3D43E13 for ; Sun, 30 Jun 2002 11:55:16 -0700 (PDT) (envelope-from stuartb@4gh.net) Received: from localhost (stuartb@localhost) by precipice.4gh.net (8.11.6/8.11.6) with ESMTP id g5UIt8E37900; Sun, 30 Jun 2002 14:55:08 -0400 (EDT) (envelope-from stuartb@4gh.net) Date: Sun, 30 Jun 2002 14:55:07 -0400 (EDT) From: Stuart Barkley To: FreeBSD User Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Laptop Toshiba 3000-504 In-Reply-To: <20020630151937.I93405-100000@asimov.isr.uc.pt> Message-ID: <20020630144452.F37863-100000@precipice.4gh.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Check the freebsd-mobile archives for both the 3000-504 and the 1005-S157. There has been a tiny amount of discussion on these problems. Partial solutions below: On Sun, 30 Jun 2002, FreeBSD User wrote: > There is a strange behaviour with this laptop: if the module snd_ich > is not loaded at boot it lockup. Of course it can be added by > issuing the load snd_ich at boot, but I thing that this is not > usable with the instalation CD, right? Initially I had to rebuild the installation CD with a custom kernel which added pcm support to do the install. Someone else recently discovered that you can set "eisa 0" during the boot off of the standard CR-ROM and install successfully. > Another question is that the mouse pad doesn't work. I have tried to > change the default values of KBD_MAXWAIT and KBD_RESETDELAY as > recomended on the man page without success. Here follows the dmesg > output. I've posted a small patch on freebsd-mobile for this problem: --- ./isa/psm.c.orig Wed Mar 27 11:53:35 2002 +++ ./isa/psm.c Tue Jun 18 18:10:01 2002 @@ -650,6 +650,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", @@ -999,9 +1000,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", > BTW: the apm command does says _always_ that there is no batery and > that it is being powered from AC. Related with this, after entering > the suspend mode it locks on wakeup. I have the same problem, but haven't looked at it yet. I may just wait for ACPI. Stuart -- I've never been lost; I was once bewildered for three days, but never lost! -- Daniel Boone To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message