Re: [PATCH] /sys/isa/psm.c Toshiba Sattelite P10

2003-12-28 Thread Francesco Casadei
All my previous attempts to send a message failed
cause my ISP's SMTP server was blocked:

The following message to <[EMAIL PROTECTED]>
was undeliverable.
The reason for the problem:
5.1.0 - Unknown address error 554-'Service
unavailable; Client host
+[212.123.84.81] blocked using bl.spamcop.net; Blocked
- see
+http://www.spamcop.net/bl.shtml?212.123.84.81'

So I'm trying again from, but this time from yahoo's
webmail service (sorry if line wrap looks bad). The
body of the orignal reply was:

You may try to set the IGNOREPORTERROR flag instead.
Put the following
line in /boot/device.hints:

hint.psm.0.flags="0x1000"

It worked on my Toshiba Satellite A30-514 with
FreeBSD-5.2RC1.
For more information read psm(4).

Francesco Casadei


__
Yahoo! Mail: 6MB di spazio gratuito, 30MB per i tuoi allegati, l'antivirus, il filtro 
Anti-spam
http://it.yahoo.com/mail_it/foot/?http://it.mail.yahoo.com/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


[PATCH] /sys/isa/psm.c Toshiba Sattelite P10

2003-12-27 Thread Vahe Khachikyan
I had a problem on my new Toshiba Satellite P10 laptop.
-CURRENT system kernel didn't recognize the touchpad.
Adding the patch below to /sys/isa/psm.c helps.

I just found a similar patch for another toshiba model
and found out that on my model the return code from test_aux_port is
3 instead of 2 as in patch mentioned in
http://www.geocrawler.com/archives/3/163/2002/2/0/7956812/

I have no idea what is it good for. The only thing I know it works in my
case.
Probably somebody will find the information helpfull.
I can provide additional info on request.


--- psm.orig.c  Sat Dec 27 21:31:22 2003
+++ psm.c   Sat Dec 27 21:30:10 2003
@@ -626,6 +626,7 @@

 switch((i = test_aux_port(kbdc))) {
 case 1:/* ignore this error */
+case 3:/* ignore this error */
 case PSM_ACK:
if (verbose)
log(LOG_DEBUG, "psm%d: strange result for test aux port
(%d).\n",
@@ -1012,6 +1013,7 @@
  */
 switch ((i = test_aux_port(sc->kbdc))) {
 case 1:   /* ignore this error */
+case 3:   /* ignore this error */
 case PSM_ACK:
 if (verbose)
printf("psm%d: strange result for test aux port (%d).\n",

Best regards
--
Vahe Khachikyan
---

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "[EMAIL PROTECTED]"