Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Jun 2002 14:55:07 -0400 (EDT)
From:      Stuart Barkley <stuartb@4gh.net>
To:        FreeBSD User <l1@asimov.isr.uc.pt>
Cc:        freebsd-stable@FreeBSD.ORG
Subject:   Re: Laptop Toshiba 3000-504 
Message-ID:  <20020630144452.F37863-100000@precipice.4gh.net>
In-Reply-To: <20020630151937.I93405-100000@asimov.isr.uc.pt>

next in thread | previous in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020630144452.F37863-100000>