From owner-freebsd-mobile Sun Aug 30 13:08:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA27817 for freebsd-mobile-outgoing; Sun, 30 Aug 1998 13:08:11 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from davinci.isds.duke.edu (davinci.isds.duke.edu [152.3.22.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA27810 for ; Sun, 30 Aug 1998 13:08:07 -0700 (PDT) (envelope-from sto@stat.Duke.EDU) Received: from cayenne.isds.duke.edu (cayenne.isds.duke.edu [152.3.22.11]) by davinci.isds.duke.edu (8.8.8/8.8.8) with ESMTP id QAA09014 for ; Sun, 30 Aug 1998 16:07:10 -0400 (EDT) Received: (from sto@localhost) by cayenne.isds.duke.edu (8.8.8/8.8.8) id QAA21222; Sun, 30 Aug 1998 16:07:09 -0400 (EDT) Date: Sun, 30 Aug 1998 16:07:09 -0400 (EDT) Message-Id: <199808302007.QAA21222@cayenne.isds.duke.edu> From: "Sean O'Connell" To: FreeBSD mobile Subject: /etc/pccard_ether X-Mailer: VM 6.33 under Emacs 19.34.2 X-Organization: Institute of Statistics and Decision Sciences, Duke University Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi All- I realize this probably picking a nit, but I was unable to get /etc/pccard_ether (in -stable) to work with the pccard_ifconfig option. I have put together a quickie patch that is pretty much a direct hack (stolen entirely from the PAO pccard_ether for 2.2.6-RELEASE by HOSOKAWA, Tatsumi ). This fixes the handling of properly inserting the ifconfig_$interface into the script. Otherwise it falls flat on it's face. I hope this patch (unified diff) helps some folks: --- pccard_ether.bak Sun Aug 30 15:58:13 1998 +++ pccard_ether Sun Aug 30 15:57:47 1998 @@ -10,8 +10,14 @@ . /etc/rc.conf fi +# catch the interface name (rest are additional args) +interface=$1 +shift + if [ "x$pccard_ifconfig" != "xNO" ] ; then - if [ "x$pccard_ifconfig" = "xDHCP" ] ; then + # get ifconfig line for the interface + eval ifconfig_args=\$ifconfig_${interface} + if [ "x$ifconfig_args" = "xDHCP" ] ; then if [ -f /usr/local/sbin/dhclient ] ; then if [ -s /var/run/dhclient.pid ] ; then kill `cat /var/run/dhclient.pid` @@ -22,9 +28,7 @@ echo "DHCP client software not available (isc-dhcp2)" fi else - interface=$1 - shift - ifconfig $interface $pccard_ifconfig $* + ifconfig $interface $ifconfig_args $* fi fi ------------------------------------------------------------------------- Sean O'Connell Email: sean@stat.Duke.EDU Institute of Statistics and Decision Sciences Phone: (919) 684-5419 Duke University Fax: (919) 684-8594 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 30 14:01:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA05591 for freebsd-mobile-outgoing; Sun, 30 Aug 1998 14:01:08 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from redfish.go2net.com (redfish.go2net.com [207.178.55.5]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id OAA05586 for ; Sun, 30 Aug 1998 14:01:06 -0700 (PDT) (envelope-from marcs@go2net.com) Received: from marcs by redfish.go2net.com with smtp (Exim 1.82 #2) id 0zDEYl-0005Iu-00; Sun, 30 Aug 1998 13:58:51 -0700 Date: Sun, 30 Aug 1998 13:58:51 -0700 (PDT) From: Marc Slemko X-Sender: marcs@redfish To: "Sean O'Connell" cc: FreeBSD mobile Subject: Re: /etc/pccard_ether In-Reply-To: <199808302007.QAA21222@cayenne.isds.duke.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 30 Aug 1998, Sean O'Connell wrote: > Hi All- > > I realize this probably picking a nit, but I was unable to get > /etc/pccard_ether (in -stable) to work with the pccard_ifconfig > option. I have put together a quickie patch that is pretty > much a direct hack (stolen entirely from the PAO pccard_ether > for 2.2.6-RELEASE by HOSOKAWA, Tatsumi ). > This fixes the handling of properly inserting the ifconfig_$interface > into the script. Otherwise it falls flat on it's face. > The current design of the pccard_ifconfig line is designed so you have the ifconfig arguments (eg. "inet 207.178.54.41") on it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 30 14:29:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA09009 for freebsd-mobile-outgoing; Sun, 30 Aug 1998 14:29:52 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from redfish.go2net.com (redfish.go2net.com [207.178.55.5]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id OAA08998 for ; Sun, 30 Aug 1998 14:29:46 -0700 (PDT) (envelope-from marcs@go2net.com) Received: from marcs by redfish.go2net.com with smtp (Exim 1.82 #2) id 0zDF12-0005RG-00; Sun, 30 Aug 1998 14:28:04 -0700 Date: Sun, 30 Aug 1998 14:28:04 -0700 (PDT) From: Marc Slemko X-Sender: marcs@redfish To: mobile@FreeBSD.ORG Subject: booting without floppy Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org If I boot my tp560 without the floppy, under 95 I can hibernate, attach it, and go on my way using it without problems. Under FreeBSD it doesn't detect it at boot so I can't. I tried the suggestion of adding a flags entry to the fdc0 controller but that doesn't help; the code where that is done appears to only be called if there is a drive that looks to be there or something. Suggestions, or do I have go to hacking? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 30 14:55:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA12800 for freebsd-mobile-outgoing; Sun, 30 Aug 1998 14:55:30 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from ns.mt.sri.com (sri-gw.MT.net [206.127.105.141]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA12775 for ; Sun, 30 Aug 1998 14:55:27 -0700 (PDT) (envelope-from nate@mt.sri.com) Received: from mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.8.8/8.8.8) with SMTP id PAA09152; Sun, 30 Aug 1998 15:54:30 -0600 (MDT) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id PAA27010; Sun, 30 Aug 1998 15:54:29 -0600 Date: Sun, 30 Aug 1998 15:54:29 -0600 Message-Id: <199808302154.PAA27010@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: "Sean O'Connell" Cc: FreeBSD mobile Subject: Re: /etc/pccard_ether In-Reply-To: <199808302007.QAA21222@cayenne.isds.duke.edu> References: <199808302007.QAA21222@cayenne.isds.duke.edu> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sean O'Connell writes: > Hi All- > > I realize this probably picking a nit, but I was unable to get > /etc/pccard_ether (in -stable) to work with the pccard_ifconfig > option. Are you trying to use ifconfig_ed0 to configure your device? If so, that doesn't work. You need to have a line of the form: pccard_ifconfig="inet 206.127.76.138 netmask 255.255.255.248" In your /etc/rc.conf for it to work. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 30 18:16:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA01630 for freebsd-mobile-outgoing; Sun, 30 Aug 1998 18:16:10 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from davinci.isds.duke.edu (davinci.isds.duke.edu [152.3.22.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA01625 for ; Sun, 30 Aug 1998 18:16:09 -0700 (PDT) (envelope-from sto@stat.Duke.EDU) Received: from cayenne.isds.duke.edu (cayenne.isds.duke.edu [152.3.22.11]) by davinci.isds.duke.edu (8.8.8/8.8.8) with ESMTP id VAA09414 for ; Sun, 30 Aug 1998 21:15:11 -0400 (EDT) Received: (from sto@localhost) by cayenne.isds.duke.edu (8.8.8/8.8.8) id VAA22584; Sun, 30 Aug 1998 21:15:11 -0400 (EDT) Date: Sun, 30 Aug 1998 21:15:11 -0400 (EDT) Message-Id: <199808310115.VAA22584@cayenne.isds.duke.edu> From: "Sean O'Connell" To: FreeBSD mobile Subject: /etc/pccard_ether reprise X-Mailer: VM 6.33 under Emacs 19.34.2 X-Organization: Institute of Statistics and Decision Sciences, Duke University Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi All- As several people have pointed out to me, the correct use of the pccard_ifconfig line is: pccard_ifconfg="inet 111.222.333.444 netmask 255.255.255.0" Based on my reading of the manpage and prior experience with FreeBSD on desktops and PAO, that you still needed an ifconfig_${interface} entry in rc.conf. This blinded me to what was going on (reading pccard_ether the wrong way). I think this makes more sense (ie, letting pccardd pick up the interface of the day and any link/media type flags and letting pccard_ifconfig do the nitty gritty). May I suggest a minor change to the manpage for rc.conf to better elaborate on the proper usage of this. pccard_ifconfig (str) List of ethernet devices (e.g. ed0 ed1 ep0 ...) which should be dynamically ifconfig'd on insertion or boot. Maybe something like: pccard_ifconfig (str) IP set up for a dynamically attached iterface (e.g. "inet 127.0.0.2 netmask 255.255.255.0"). The relevant entry in /etc/ppcard.conf yields the interface and any adapter specific flags. Thanks S -- ------------------------------------------------------------------------- Sean O'Connell Email: sean@stat.Duke.EDU Institute of Statistics and Decision Sciences Phone: (919) 684-5419 Duke University Fax: (919) 684-8594 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 31 00:37:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA07712 for freebsd-mobile-outgoing; Mon, 31 Aug 1998 00:37:11 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from mrelay.jrc.it (mrelay.jrc.it [139.191.1.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA07707 for ; Mon, 31 Aug 1998 00:37:06 -0700 (PDT) (envelope-from dirk.vangulik@jrc.it) Received: from elpc36.jrc.it (elpc36.jrc.it [139.191.71.36]) by mrelay.jrc.it (LMC5692) with ESMTP id JAA28755; Mon, 31 Aug 1998 09:35:55 +0200 (MET DST) Received: (from dirkx@localhost) by elpc36.jrc.it (8.8.8/8.8.7) id JAA09334; Mon, 31 Aug 1998 09:37:05 +0200 (CEST) (envelope-from dirkx) Date: Mon, 31 Aug 1998 09:37:05 +0200 (CEST) From: Dirk-Willem van Gulik X-Sender: dirkx@elpc36.jrc.it To: Marc Slemko cc: "Sean O'Connell" , FreeBSD mobile Subject: Re: /etc/pccard_ether In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 30 Aug 1998, Marc Slemko wrote: > On Sun, 30 Aug 1998, Sean O'Connell wrote: > > > I realize this probably picking a nit, but I was unable to get > > /etc/pccard_ether (in -stable) to work with the pccard_ifconfig > > option. I have put together a quickie patch that is pretty > > much a direct hack (stolen entirely from the PAO pccard_ether > > for 2.2.6-RELEASE by HOSOKAWA, Tatsumi ). > > This fixes the handling of properly inserting the ifconfig_$interface > > into the script. Otherwise it falls flat on it's face. > The current design of the pccard_ifconfig line is designed so you have the > ifconfig arguments (eg. "inet 207.178.54.41") on it. Or have it set to DHCP.. But still there is no convenient way to have different DHCP domains, on some which you trust '-r -n' setting for host and resolv.conf; whereas on others you might have to specifiy a whole lot more. Dw. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 31 04:08:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA02063 for freebsd-mobile-outgoing; Mon, 31 Aug 1998 04:08:15 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from smtp.hkstar.com (cassiopeia.hkstar.com [202.82.3.11]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA01927 for ; Mon, 31 Aug 1998 04:08:12 -0700 (PDT) (envelope-from kwanalex@hkstar.com) Received: from home (ip-53-161.dialup.hkstar.com [202.82.53.161]) by smtp.hkstar.com (8.8.8/8.8.4) with SMTP id TAA21553 for ; Mon, 31 Aug 1998 19:07:12 +0800 (HKT) X-Authentication-Warning: cassiopeia.hkstar.com: Host ip-53-161.dialup.hkstar.com [202.82.53.161] claimed to be home Message-ID: <004b01bdd4cf$b083fa40$0300a8c0@home> From: "Alex Kwan" To: Subject: install 2.2.7 on a laptop Date: Mon, 31 Aug 1998 19:08:30 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! I want to install the FreeBSD 2.2.7 on my laptop Toshiba Libretto 60, and have I following questions: 1) The patch file PAO-980430 from www.jp.FreeBSD.org is required or recommended? can I use this file to install 2.2.7R? 2) I want to buy a Ethernet 10/100 + Modem K56 (2 in 1) pc-card, because my laptop is only have one type II slot, and I dont' want to change the card frequently, which models are recommanded Best Regards, Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 31 08:46:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA07164 for freebsd-mobile-outgoing; Mon, 31 Aug 1998 08:46:52 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from lambic.physics.montana.edu (lambic.physics.montana.edu [153.90.192.128]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA07159 for ; Mon, 31 Aug 1998 08:46:50 -0700 (PDT) (envelope-from handy@lambic.physics.montana.edu) Received: from localhost (handy@localhost) by lambic.physics.montana.edu (8.8.8/8.8.7) with SMTP id JAA21518 for ; Mon, 31 Aug 1998 09:45:39 -0600 (MDT) (envelope-from handy@lambic.physics.montana.edu) Date: Mon, 31 Aug 1998 09:45:39 -0600 (MDT) From: Brian Handy To: freebsd-mobile@FreeBSD.ORG Subject: TP560...cont'd Message-ID: X-files: The truth is out there MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The stupid questions will continue until I get a clue. :-O OK, I'm looking at buying a TP560X here, then upgrading the hard drive and maxing out the RAM to 96MB (!). Some questions for the studio audience: (1) Anybody know if the video on these is supported? (2) Can I drop normal PCMCIA cards in this and get them to work, or is there something new here? (3) I'm looking at the 560X with the "HPA" screen. What's an HPA screen? (4) Has anybody run one of these? Anything I should be frightened about? More specifically, any favorite vendors? Thanks, Brian -- Brian Handy Mail: handy@physics.montana.edu Department of Physics Phone: (406) 994-6317 Montana State University Fax: (406) 994-4452 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 31 08:51:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA07602 for freebsd-mobile-outgoing; Mon, 31 Aug 1998 08:51:38 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from pangeia.com.br (spliff.pangeia.com.br [200.239.53.35]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA07593 for ; Mon, 31 Aug 1998 08:51:23 -0700 (PDT) (envelope-from nelson@pangeia.com.br) Received: from localhost (nelson@localhost) by pangeia.com.br (8.6.12/8.8.4) with SMTP id NAA04973 for ; Mon, 31 Aug 1998 13:01:45 -0300 Date: Mon, 31 Aug 1998 13:01:45 -0300 (EST) From: Nelson Murilo Reply-To: Nelson Murilo To: freebsd-mobile@FreeBSD.ORG Subject: Re: install 2.2.7 on a laptop In-Reply-To: <004b01bdd4cf$b083fa40$0300a8c0@home> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org }I want to install the FreeBSD 2.2.7 on my laptop }Toshiba Libretto 60, and have I following questions: } }1) The patch file PAO-980430 from www.jp.FreeBSD.org } is required or recommended? can I use this file to install 2.2.7R? Well, I have one Libretto 100CT and don't use PAO. # uname -a FreeBSD zorak.pangeia.com.br 2.2.7-STABLE FreeBSD 2.2.7-STABLE #0: Mon Aug 24 13:55:33 GMT 1998 root@zorak.pangeia.com.br:/usr/src/sys/compile/PCCARD i386 My ethernet card (Planet ENW3501) work fine, but I don't tested more complex cards. Good luck, -- ./nelson -murilo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 31 08:58:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA08945 for freebsd-mobile-outgoing; Mon, 31 Aug 1998 08:58:55 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from lambic.physics.montana.edu (lambic.physics.montana.edu [153.90.192.128]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA08927 for ; Mon, 31 Aug 1998 08:58:50 -0700 (PDT) (envelope-from handy@lambic.physics.montana.edu) Received: from localhost (handy@localhost) by lambic.physics.montana.edu (8.8.8/8.8.7) with SMTP id JAA21592 for ; Mon, 31 Aug 1998 09:57:39 -0600 (MDT) (envelope-from handy@lambic.physics.montana.edu) Date: Mon, 31 Aug 1998 09:57:39 -0600 (MDT) From: Brian Handy To: freebsd-mobile@FreeBSD.ORG Subject: Re: TP560...cont'd In-Reply-To: Message-ID: X-files: The truth is out there MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Following up on my own note... >(3) I'm looking at the 560X with the "HPA" screen. What's an HPA > screen? I see there are two models of the "TP560X", this one and one with a bigger HD and a TFT screen, which I do know about. Any opinions on these? Thanks, Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 31 09:39:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA15360 for freebsd-mobile-outgoing; Mon, 31 Aug 1998 09:39:45 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from word.smith.net.au (castles346.castles.com [208.214.167.46]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA15339 for ; Mon, 31 Aug 1998 09:39:40 -0700 (PDT) (envelope-from mike@word.smith.net.au) Received: from word.smith.net.au (LOCALHOST [127.0.0.1]) by word.smith.net.au (8.9.1/8.8.8) with ESMTP id JAA20634; Mon, 31 Aug 1998 09:36:19 GMT (envelope-from mike@word.smith.net.au) Message-Id: <199808310936.JAA20634@word.smith.net.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Brian Handy cc: freebsd-mobile@FreeBSD.ORG Subject: Re: TP560...cont'd In-reply-to: Your message of "Mon, 31 Aug 1998 09:57:39 CST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 31 Aug 1998 09:36:18 +0000 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Following up on my own note... > > >(3) I'm looking at the 560X with the "HPA" screen. What's an HPA > > screen? > > I see there are two models of the "TP560X", this one and one with a bigger > HD and a TFT screen, which I do know about. Any opinions on these? If the TFT screen is more expensive than the "HPA" screen, then "HPA" is another name for "passive scan". You would almost certainly want the TFT "active matrix" display; better contrast, brighter, faster (less persistence). -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 31 22:09:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA20041 for freebsd-mobile-outgoing; Mon, 31 Aug 1998 22:09:11 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from word.smith.net.au (castles231.castles.com [208.214.165.231]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA20035 for ; Mon, 31 Aug 1998 22:09:07 -0700 (PDT) (envelope-from mike@word.smith.net.au) Received: from word.smith.net.au (localhost [127.0.0.1]) by word.smith.net.au (8.9.1/8.8.8) with ESMTP id WAA00754; Mon, 31 Aug 1998 22:04:47 GMT (envelope-from mike@word.smith.net.au) Message-Id: <199808312204.WAA00754@word.smith.net.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Robert Withrow cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Has anyone gotten the Netgear FA410TX pccard to work? In-reply-to: Your message of "Mon, 31 Aug 1998 18:44:14 -0400." <199808312244.SAA12584@spooky.rwwa.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 31 Aug 1998 22:04:46 +0000 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Wrong list - moved to -mobile. > I've fiddled and failed. PAO is silent on this card. The tech-support > people say it should look like a NE2000, but it autoconfigs as a NE1000 > and claims its NIC memory is invalid. What do you mean by "PAO is silent"? You could try building a kernel with GWETHER defined, as this adds some sophistication to the NE2000 probe for catching funny NE2000 part-clones. When you say "claims its NIC memory is invalid", do you mean that you get this error message? "ed%d: NIC memory corrupt - invalid packet length %d" (Please always quote error messages literally; it makes chasing them down in the source much easier.) You might reasonably get this message if the board has been misdetected. It's possible that it runs in both NE1000 and NE2000 modes with some oddness; you could try changing the 'if (bcmp...)' test around line 1148 to 'if (1)' and see if it probes OK as an NE2000. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 1 04:03:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27250 for freebsd-mobile-outgoing; Tue, 1 Sep 1998 04:03:17 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from smtp.hkstar.com (cassiopeia.hkstar.com [202.82.3.11]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA27241 for ; Tue, 1 Sep 1998 04:03:13 -0700 (PDT) (envelope-from kwanalex@hkstar.com) Received: from home ([202.82.241.87]) by smtp.hkstar.com (8.8.8/8.8.4) with SMTP id TAA26079 for ; Tue, 1 Sep 1998 19:02:11 +0800 (HKT) X-Authentication-Warning: cassiopeia.hkstar.com: Host [202.82.241.87] claimed to be home Message-ID: <003101bdd598$2710ce40$0300a8c0@home> From: "Alex Kwan" To: Subject: Modem Card or Modem + Ethernet Multi Function Card Date: Tue, 1 Sep 1998 19:03:27 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have just installed FreeBSD 2.2.7 on my laptop, and I wanted to buy a Modem Card or a Modem + Ethernet Card Does anybody have the suggestion about that? 1) K56 Modem Card. (How about the Zoom K56/V.90?) 2) K56 Modem Card + 10/100 Ethernet Card, (Does the Multi Function Card is supported by 2.2.7 right now?) Thanks Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 1 04:36:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA01651 for freebsd-mobile-outgoing; Tue, 1 Sep 1998 04:36:55 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from penguin.wise.edt.ericsson.se (penguin-ext.wise.edt.ericsson.se [194.237.142.5]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA01643 for ; Tue, 1 Sep 1998 04:36:46 -0700 (PDT) (envelope-from martti.kuparinen@lmf.ericsson.se) Received: from umail.lmf.ericsson.se (umail.lmf.ericsson.se [131.160.11.2]) by penguin.wise.edt.ericsson.se (8.9.0/8.9.0/glacier-1.11) with SMTP id NAA15659 for ; Tue, 1 Sep 1998 13:35:34 +0200 (MET DST) Received: from tosb0323 by umail.lmf.ericsson.se (SMI-8.6/SMI-SVR4) id OAA23687; Tue, 1 Sep 1998 14:34:06 +0300 Message-Id: <3.0.6.32.19980901143445.009d9420@openmail.lmf.ericsson.se> X-Sender: lmfmara@openmail.lmf.ericsson.se X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Tue, 01 Sep 1998 14:34:45 +0300 To: freebsd-mobile@FreeBSD.ORG From: Martti Kuparinen Subject: WaveLAN PCMCIA in 2.2.7-RELEASE Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have few FreeBSD 2.2.7-RELEASE machines (desktop and laptop) that I want to connect with wireless LAN. Currently I am looking at Lucent's WaveLAN cards, both ISA and PCMCIA versions. According to the handbook (http://www.freebsd.org/handbook/handbook10.html) WaveLAN is supported (but the wl driver supports only the ISA version). Since I am using 2.2.7-RELEASE, where can I find the wlp driver (PAO has it, but it's 2.2.6-RELEASE). Or, if you have better ideas about hardware, please say it... /Martti PS. Please CC also me, since I don't subscribe to this list. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 1 08:37:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA27454 for freebsd-mobile-outgoing; Tue, 1 Sep 1998 08:37:18 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from word.smith.net.au (castles243.castles.com [208.214.165.243]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA27447 for ; Tue, 1 Sep 1998 08:37:15 -0700 (PDT) (envelope-from mike@word.smith.net.au) Received: from word.smith.net.au (localhost [127.0.0.1]) by word.smith.net.au (8.9.1/8.8.8) with ESMTP id IAA03946; Tue, 1 Sep 1998 08:33:25 GMT (envelope-from mike@word.smith.net.au) Message-Id: <199809010833.IAA03946@word.smith.net.au> X-Mailer: exmh version 2.0.2 2/24/98 To: "Alex Kwan" cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Modem Card or Modem + Ethernet Multi Function Card In-reply-to: Your message of "Tue, 01 Sep 1998 19:03:27 +0800." <003101bdd598$2710ce40$0300a8c0@home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 01 Sep 1998 08:33:23 +0000 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I have just installed FreeBSD 2.2.7 on my laptop, > and I wanted to buy a Modem Card or a Modem > + Ethernet Card Does anybody have the suggestion > about that? > > 1) K56 Modem Card. (How about the Zoom K56/V.90?) Most modem cards are fine. > 2) K56 Modem Card + 10/100 Ethernet Card, (Does the > Multi Function Card is supported by 2.2.7 right now?) No, we don't support multifunction cards at this time. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 1 22:27:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA13159 for freebsd-mobile-outgoing; Tue, 1 Sep 1998 22:27:59 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from smtp.hkstar.com (cassiopeia.hkstar.com [202.82.3.11]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA13139 for ; Tue, 1 Sep 1998 22:27:48 -0700 (PDT) (envelope-from kwanalex@hkstar.com) Received: from drdlaw ([202.82.194.23]) by smtp.hkstar.com (8.8.8/8.8.4) with ESMTP id NAA27125 for ; Wed, 2 Sep 1998 13:26:41 +0800 (HKT) Message-Id: <199809020526.NAA27125@smtp.hkstar.com> X-Authentication-Warning: cassiopeia.hkstar.com: Host [202.82.194.23] claimed to be drdlaw From: "Alex Kwan" To: Subject: 3Com 3C574 -TX ethernet card Date: Wed, 2 Sep 1998 13:14:10 +0800 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1155 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have a Ethernet Card 3Com 3C574-TX it is working very well with MS Windows, Does it supported by FreeBSD 2.2.7R too? If anybody have this card, please give me some comments. Best regards To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 2 00:56:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA08622 for freebsd-mobile-outgoing; Wed, 2 Sep 1998 00:56:46 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from po5.andrew.cmu.edu (PO5.ANDREW.CMU.EDU [128.2.10.105]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA08617 for ; Wed, 2 Sep 1998 00:56:45 -0700 (PDT) (envelope-from dwhite@resnet.uoregon.edu) Received: from resnet.uoregon.edu (resnet.uoregon.edu [128.223.144.32]) by po5.andrew.cmu.edu (8.8.5/8.8.2) with ESMTP id DAA13775 for ; Wed, 2 Sep 1998 03:55:42 -0400 (EDT) Received: from localhost (dwhite@localhost) by resnet.uoregon.edu (8.8.5/8.8.8) with SMTP id AAA25143; Wed, 2 Sep 1998 00:55:39 -0700 (PDT) (envelope-from dwhite@resnet.uoregon.edu) Date: Wed, 2 Sep 1998 00:55:39 -0700 (PDT) From: Doug White To: Matt White cc: post+internet.computing.freebsd.mobile@andrew.cmu.edu Subject: Re: TI PCI-1131 CardBus Controller support? In-Reply-To: <2204349360.904147481@mach105.xnet.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 26 Aug 1998, Matt White wrote: > What is the status of support (either in PAO or FreeBSD native) of the TI > PCI-1131 CardBus Controller? Is support for this chipset planned? As soon as someone steps up to head the effort. > As a side question, why is PAO separate from FreeBSD? Philosophy, I think. PAO adds a bunch of drivers (ie Adaptec SlimSCSI) that weren't ready for FreeBSD prime-time. Now that more of PAO has come into the main tree it may go away. Doug White | University of Oregon Internet: dwhite@resnet.uoregon.edu | Residence Networking Assistant http://gladstone.uoregon.edu/~dwhite | Computer Science Major To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 2 23:42:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA29799 for freebsd-mobile-outgoing; Wed, 2 Sep 1998 23:42:11 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from shell6.ba.best.com (shell6.ba.best.com [206.184.139.137]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA29661; Wed, 2 Sep 1998 23:42:01 -0700 (PDT) (envelope-from jkb@best.com) Received: from localhost (jkb@localhost) by shell6.ba.best.com (8.9.0/8.9.0/best.sh) with SMTP id XAA02312; Wed, 2 Sep 1998 23:40:57 -0700 (PDT) X-Authentication-Warning: shell6.ba.best.com: jkb owned process doing -bs Date: Wed, 2 Sep 1998 23:40:57 -0700 (PDT) From: "Jan B. Koum " X-Sender: jkb@shell6.ba.best.com To: mobile@FreeBSD.ORG cc: questions@FreeBSD.ORG Subject: Dell Latitude CP sound problems. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello all, Anyone has sound working on Dell Latitude CP? I am not using PAO (since I want to stay run make world on -stable every week or so). Any help or pointers are welcome. The chipset is Crystal 4237b - I can't detect it with PnP code: No Plug-n-Play devices were found Probing for devices on the ISA bus: Here is relevant kernel entry: controller pnp0 device pcm0 at isa? port ? tty irq 5 drq 1 flags 0x0 vector pcm.. -- Yan "Twenty years from now you will be more disappointed by the things you didn't do than by the things you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover." Mark Twain To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 3 11:23:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA24970 for freebsd-mobile-outgoing; Thu, 3 Sep 1998 11:23:19 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from localhost.my.domain (host62.sigcomm98.BC.net [142.231.100.62]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA24964 for ; Thu, 3 Sep 1998 11:23:17 -0700 (PDT) (envelope-from zappala@cs.uoregon.edu) Received: from localhost (localhost [127.0.0.1]) by localhost.my.domain (8.8.8/8.8.8) with ESMTP id LAA00448; Thu, 3 Sep 1998 11:25:13 -0700 (PDT) (envelope-from zappala@localhost.my.domain) Message-Id: <199809031825.LAA00448@localhost.my.domain> X-Mailer: exmh version 2.0.2 2/24/98 To: freebsd-mobile@FreeBSD.ORG cc: zappala@cs.uoregon.edu Subject: trying APM changed my screen dimensions? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 03 Sep 1998 11:25:12 -0700 From: Daniel Zappala Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I tried APM for the first time the other day --- compiling a kernel with the extensions, making the appropriate device, and turning it on in rc.conf. Was able to access the status of the battery, etc, but couldn't resume once I suspended the machine. So I rebooted with my original kernel, and now my screen dimensions in DOS and in the FreeBSD console have shrunk. Once I start W95 or X and the GUI starts up, then I can use the full screen. While this seems an odd problem to have, and annoying to a perfectionist, it isn't really causing difficulties. Nevertheless, I'm curious what I might have done and how I might fix it. Using FreeBSD 2.2.7 on a Thinkpad 560X. One clue is that a Thinkpad utility reports APM 1.0, while the code I tried was 1.1. Ideas? Thanks, Daniel Zappala zappala@cs.uoregon.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 3 15:47:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA10333 for freebsd-mobile-outgoing; Thu, 3 Sep 1998 15:47:59 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from shell6.ba.best.com (shell6.ba.best.com [206.184.139.137]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA10313; Thu, 3 Sep 1998 15:47:57 -0700 (PDT) (envelope-from jkb@best.com) Received: from localhost (jkb@localhost) by shell6.ba.best.com (8.9.0/8.9.0/best.sh) with SMTP id PAA27614; Thu, 3 Sep 1998 15:46:54 -0700 (PDT) X-Authentication-Warning: shell6.ba.best.com: jkb owned process doing -bs Date: Thu, 3 Sep 1998 15:46:54 -0700 (PDT) From: "Jan B. Koum " X-Sender: jkb@shell6.ba.best.com To: mobile@FreeBSD.ORG cc: questions@FreeBSD.ORG Subject: zzz problem Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello all, I am having problems running zzz (aka apm -z). System hangs for 1 minute or so and then comes back up without actually going into suspend mode. I tried with kernel having options APM_BROKEN_STATCLOCK commented either in and out. I also tried with pcmcia cards inserted and with out. Every time system hangs for a minute or so. Could it be because it is trying to suspend sio1 which is one of the cards, but sio1 is compiled into the kernel: device sio1 at isa? port "IO_COM2" tty irq 7 vector siointr (yes, I have printer disabled - I needed an irq and that was only one available). Here is what I get on my screen when I run zzz: sio1: unload,gone Return IRQ=7 Card disabled, slot 0 ep0: unload Return IRQ=10 Card disabled, slot 1 Sometimes I don't get any output: as soon as I hit enter after I type zzz system hangs, screen doesn't suspend and then system wakes up a minute later. Ugh.. almost forgot to mention - I am not using PAO since I want to do make world. The laptop is Dell Latitude CP and OS is 2.2.7-STABLE as of few days ago. Thanks, -- Yan "Twenty years from now you will be more disappointed by the things you didn't do than by the things you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover." Mark Twain To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 3 17:05:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22078 for freebsd-mobile-outgoing; Thu, 3 Sep 1998 17:05:36 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22035 for ; Thu, 3 Sep 1998 17:05:30 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (root@woof.lan.awfulhak.org [172.16.0.7]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id AAA03941; Fri, 4 Sep 1998 00:42:45 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (brian@localhost [127.0.0.1]) by woof.lan.awfulhak.org (8.9.1/8.9.1) with ESMTP id AAA06884; Fri, 4 Sep 1998 00:44:22 +0100 (BST) (envelope-from brian@woof.lan.awfulhak.org) Message-Id: <199809032344.AAA06884@woof.lan.awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Dirk-Willem van Gulik cc: Marc Slemko , "Sean O'Connell" , FreeBSD mobile Subject: Re: /etc/pccard_ether In-reply-to: Your message of "Mon, 31 Aug 1998 09:37:05 +0200." Mime-Version: 1.0 Content-Type: multipart/mixed ; boundary="==_Exmh_-16747307640" Date: Fri, 04 Sep 1998 00:44:21 +0100 From: Brian Somers Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multipart MIME message. --==_Exmh_-16747307640 Content-Type: text/plain; charset=us-ascii > On Sun, 30 Aug 1998, Marc Slemko wrote: > > > On Sun, 30 Aug 1998, Sean O'Connell wrote: > > > > > I realize this probably picking a nit, but I was unable to get > > > /etc/pccard_ether (in -stable) to work with the pccard_ifconfig > > > option. I have put together a quickie patch that is pretty > > > much a direct hack (stolen entirely from the PAO pccard_ether > > > for 2.2.6-RELEASE by HOSOKAWA, Tatsumi ). > > > This fixes the handling of properly inserting the ifconfig_$interface > > > into the script. Otherwise it falls flat on it's face. > > > The current design of the pccard_ifconfig line is designed so you have the > > ifconfig arguments (eg. "inet 207.178.54.41") on it. > > Or have it set to DHCP.. But still there is no convenient way to have > different DHCP domains, on some which you trust '-r -n' setting for > host and resolv.conf; whereas on others you might have to specifiy a whole > lot more. I don't know how much interest there is in this side of things, but I've been using the enclosed script for some time. It allows you to specify a list of config files (this should be done in rc.conf), and when the pccard is attached, the script re-links the config files, kills the necessary programs and starts others. The idea is that you make configuration alternatives based either on the domain or IP number handed out by a dhcp server. You can also make template files that are s/something/variable/'d at configuration time. The script needs polishing - I would have done this before now, but I'm not sure if it just makes things even more obscure than they already are..... dhclient-script.local is called at the end of dhclient-script and iface-info is a perl script that grabs bits out of the lease file. > Dw. -- Brian , , Don't _EVER_ lose your sense of humour.... --==_Exmh_-16747307640 Content-Type: text/plain ; name="iface-info"; charset=us-ascii Content-Description: iface-info Content-Disposition: attachment; filename="iface-info" #! /usr/local/bin/perl die "Usage: iface-info iface\n" if ($#ARGV != 0); open (IFCONFIG, "ifconfig $ARGV[0] |") || die "Cannot execute ifconfig\n"; while () { $input = $_; foreach $var ("mtu", "inet", "netmask", "broadcast", "ether") { $_ = $input; chop; if (s/.*[ ]($var) ([^ ]*).*/$2/) { $assign = $var; $n = 0; while (${$assign} ne "") { $n++; $assign = "$var$n"; } ${$assign} = $_; print "$assign=$_\n"; if ($var eq "netmask") { $bit = 0x80000000; $mask = eval $_; $bits = 0; while ($bit & $mask) { $bits++; $bit >>= 1; } while ($bit && !($bit & $mask)) { $bit >>= 1; } $assign = $n ? "$n" : ""; print "netmask_bits$assign=$bits\n" unless $bit; } } } } close IFCONFIG; exit 0 unless $inet; open (LEASES, "/var/db/dhclient.leases") || exit 0; while () { $look = 1 if /\{/; if (/\}/) { last if $done; $look = $found = 0; } next unless $look; $found = 1 if /fixed-address $inet/; next unless $found; if (s/.*[ ]routers[ ]*(.*);.*/defaultroute=$1/) { print; $done = 1; } if (s/.*[ ]domain-name-servers[ ]*(.*);.*/$1/) { ($nameserver1, $nameserver2) = split(/,/); print "nameserver1=$nameserver1\n"; print "nameserver2=$nameserver2"; $done = 1; } if (s/.*[ ]domain-name[ ]*\"(.*)\".*/domain=$1/) { print; $done = 1; } } close LEASES; --==_Exmh_-16747307640 Content-Type: text/plain ; name="dhclient-script.local"; charset=us-ascii Content-Description: dhclient-script.local Content-Disposition: attachment; filename="dhclient-script.local" #! /bin/sh # # Do some post-configuration setup stuff # PATH=/usr/local/bin:$PATH # link these files pccard_files="/etc/profile /etc/printcap /usr/local/etc/smb.conf /etc/namedb/named.conf /home/brian/.netscape/preferences.js" # Kill these progs pccard_kill="smbd nmbd arpwatch rwhod" pccard_restart="named" # startup script dirs. pccard_startup="/usr/local/etc/rc.d /usr/X11R6/etc/rc.d" ip=$check_ip_address domain=$check_domain_name test -z "$ip" -a ."$new_ip_address" != ."$old_ip_address" && ip=$new_ip_address domain=$new_domain_name eval $(iface-info $interface) # What's currently configured ? [ "$inet" != "$ip" ] && exit 0 # We'll be called again... generate() { # Generate from a template (.tmpl) file sed -e 's/dhclient-inet/'$inet/ \ -e 's/dhclient-netmask-bits/'$netmask_bits/ \ -e 's/dhclient-netmask/'$netmask/ \ -e 's/dhclient-broadcast/'$broadcast/ \ -e 's/dhclient-mtu/'$mtu/ \ -e 's/dhclient-ether/'$ether/ \ -e 's/dhclient-defaultroute/'$defaultroute/ \ -e 's/dhclient-nameserver1/'$nameserver1/ \ -e 's/dhclient-nameserver2/'$nameserver2/ \ -e 's/dhclient-domain/'$domain/ \ $1 >$2 } case "$ip" in "") ;; *) if [ -n "$pccard_files" ]; then if [ -z "$domain" ]; then logger -p local0.notice "dhcp: $interface: $ip: No leased domain !" exit 0 fi keepgoing=TRUE for f in $pccard_files; do keepgoing=FALSE for file in $f.$domain.tmpl $f.$domain $f.$ip $f.tmpl do if [ -f $file ]; then keepgoing=TRUE break fi done if [ $keepgoing = FALSE ]; then echo "$f: Missing template file" >&2 break fi done if [ $keepgoing = TRUE ]; then logger -p local0.notice "dhcp: Config $interface for $ip ($domain)" killall $(echo $pccard_kill) for f in $pccard_files; do rm -f $f if [ -f $f.$domain.tmpl ]; then generate $f.$domain.tmpl $f elif [ -f $f.$domain ]; then ln -s ${f##*/}.$domain $f elif [ -f $f.$ip ]; then ln -s ${f##*/}.$ip $f else generate $f.tmpl $f fi done killall -HUP $(echo $pccard_restart) sleep 1 for dir in $pccard_startup; do if [ -d $dir ]; then for f in $dir/*.dhclient; do [ -x $f ] && $f $ip $domain done fi done else logger -p local0.notice "dhcp: $interface: $ip: Unknown config ($f) !" fi fi ;; esac exit 0 --==_Exmh_-16747307640-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 3 17:44:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA27886 for freebsd-mobile-outgoing; Thu, 3 Sep 1998 17:44:09 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from sligo.rutgers.edu (sligo.rutgers.edu [128.6.122.62]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA27774 for ; Thu, 3 Sep 1998 17:43:59 -0700 (PDT) (envelope-from jaypeng@crab.rutgers.edu) Received: from sligo (localhost [127.0.0.1]) by sligo.rutgers.edu (980427.SGI.8.8.8/970903.SGI.AUTOCF) via SMTP id UAA01349; Thu, 3 Sep 1998 20:43:47 -0400 (EDT) Message-ID: <35EF37C2.41C6@crab.rutgers.edu> Date: Thu, 03 Sep 1998 20:43:46 -0400 From: Jian Peng X-Mailer: Mozilla 3.01SGoldC-SGI (X11; I; IRIX 6.3 IP32) MIME-Version: 1.0 To: "Jan B. Koum" CC: mobile@FreeBSD.ORG Subject: Re: zzz problem References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi there, I have a quick question related. Is the PCMCIA ethernet adapter supposed to be active under suspended state? Say, can I put the laptop to sleep but still have the ftp or http daemon runing? Thanks. Jay To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 3 18:17:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA04922 for freebsd-mobile-outgoing; Thu, 3 Sep 1998 18:17:08 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA04912 for ; Thu, 3 Sep 1998 18:17:02 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost.cdrom.com [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id SAA02849; Thu, 3 Sep 1998 18:13:04 GMT (envelope-from mike@dingo.cdrom.com) Message-Id: <199809031813.SAA02849@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Jian Peng cc: "Jan B. Koum" , mobile@FreeBSD.ORG Subject: Re: zzz problem In-reply-to: Your message of "Thu, 03 Sep 1998 20:43:46 -0400." <35EF37C2.41C6@crab.rutgers.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 03 Sep 1998 18:13:04 +0000 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I have a quick question related. Is the PCMCIA ethernet adapter supposed > to be active under suspended state? Say, can I put the laptop to sleep > but still have the ftp or http daemon runing? Try thinking about it for a moment. What does "suspended" mean? -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 3 20:07:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA14358 for freebsd-mobile-outgoing; Thu, 3 Sep 1998 20:07:29 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from crab.rutgers.edu (crab.rutgers.edu [165.230.211.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA14352 for ; Thu, 3 Sep 1998 20:07:28 -0700 (PDT) (envelope-from jaypeng@crab.rutgers.edu) Received: from crab.rutgers.edu (cmapt207b.rutgers.edu [165.230.203.12]) by crab.rutgers.edu (8.8.8/8.8.8) with ESMTP id XAA27989; Thu, 3 Sep 1998 23:06:08 -0400 (EDT) Message-ID: <35EF5824.2DB1BE41@crab.rutgers.edu> Date: Thu, 03 Sep 1998 23:01:56 -0400 From: Jian Peng Organization: Rutgers Camden X-Mailer: Mozilla 4.06 [en] (Win95; U) MIME-Version: 1.0 To: Mike Smith CC: "Jan B. Koum" , mobile@FreeBSD.ORG Subject: Re: zzz problem References: <199809031813.SAA02849@dingo.cdrom.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mike, I did. I thought about it and I also tried it. What puzzled me is whether a request sent through ethernet a "qualified" input, like hit a key or move the mouse. I tried and never really put it to sleep. One time it worked, then when I pinged my computer I got no answer. I suppose the ethernet interface would be activated when you send a request because: (1) In windows 95, you put it standby, and you can still ping it, and those telnet and ftp daemons are still alive; (2) If the ethernet interface can not be activated remotely, why I suspend it instead of shutting it down? The reasons why I did not mention my own computer are: (1) I have a minor brand laptop (Acer); (2) I still run a 2.2.6R with PAO, which I think may not such "typical". Thanks. Mike Smith wrote: > > I have a quick question related. Is the PCMCIA ethernet adapter supposed > > to be active under suspended state? Say, can I put the laptop to sleep > > but still have the ftp or http daemon runing? > > Try thinking about it for a moment. What does "suspended" mean? > > -- > \\ Sometimes you're ahead, \\ Mike Smith > \\ sometimes you're behind. \\ mike@smith.net.au > \\ The race is long, and in the \\ msmith@freebsd.org > \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 3 23:43:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10510 for freebsd-mobile-outgoing; Thu, 3 Sep 1998 23:43:03 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from jane.lfn.org (ops.lfn.org [209.16.92.6]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id XAA10505 for ; Thu, 3 Sep 1998 23:43:02 -0700 (PDT) (envelope-from caj@lfn.org) Received: (qmail 26969 invoked by uid 100); 4 Sep 1998 06:41:57 -0000 Date: Fri, 4 Sep 1998 01:41:57 -0500 (CDT) From: Craig Johnston To: freebsd-mobile@FreeBSD.ORG Subject: vesa mode 0x102 (800x600) on tp560 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I tried using -b at the boot prompt (running just-cvsupped current) and nothing apparent happened. I was expecting to get a full 800x600 screen. Instead I got the same old 640x480 bordered with black. Anyone get this to work on a Thinkpad 560, or anything for that matter? -Craig To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 4 00:51:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA18384 for freebsd-mobile-outgoing; Fri, 4 Sep 1998 00:51:45 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA18371 for ; Fri, 4 Sep 1998 00:51:41 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.1/8.8.5) with ESMTP id JAA01958; Fri, 4 Sep 1998 09:46:49 +0200 (CEST) To: Craig Johnston cc: freebsd-mobile@FreeBSD.ORG Subject: Re: vesa mode 0x102 (800x600) on tp560 In-reply-to: Your message of "Fri, 04 Sep 1998 01:41:57 CDT." Date: Fri, 04 Sep 1998 09:46:49 +0200 Message-ID: <1956.904895209@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message , Craig Johns ton writes: > >I tried using -b at the boot prompt (running just-cvsupped current) >and nothing apparent happened. I was expecting to get a full >800x600 screen. Instead I got the same old 640x480 bordered with >black. So you DID get 800x600, but syscons only uses the center 640x480 of it. The trick is that you can start XF86 in 800x600x16colors mode from there. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 4 01:23:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21976 for freebsd-mobile-outgoing; Fri, 4 Sep 1998 01:23:01 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from jane.lfn.org (jobfair.nocitycouncil.com.92.16.209.in-addr.arpa [209.16.92.5] (may be forged)) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id BAA21971 for ; Fri, 4 Sep 1998 01:22:56 -0700 (PDT) (envelope-from caj@lfn.org) Received: (qmail 27564 invoked by uid 100); 4 Sep 1998 08:21:51 -0000 Date: Fri, 4 Sep 1998 03:21:51 -0500 (CDT) From: Craig Johnston To: Poul-Henning Kamp cc: freebsd-mobile@FreeBSD.ORG Subject: Re: vesa mode 0x102 (800x600) on tp560 In-Reply-To: <1956.904895209@critter.freebsd.dk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 4 Sep 1998, Poul-Henning Kamp wrote: > In message , Craig Johns > ton writes: > > > >I tried using -b at the boot prompt (running just-cvsupped current) > >and nothing apparent happened. I was expecting to get a full > >800x600 screen. Instead I got the same old 640x480 bordered with > >black. > > So you DID get 800x600, but syscons only uses the center 640x480 of it. > > The trick is that you can start XF86 in 800x600x16colors mode from > there. Ahh. I was hoping for a full 800x600 text screen that would eliminate the black borders. Is this something that might happen in the future? An x text screen using the full 800x600 would be kinda nifty. thanks, -Craig To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 4 01:30:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA23315 for freebsd-mobile-outgoing; Fri, 4 Sep 1998 01:30:45 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA23298 for ; Fri, 4 Sep 1998 01:30:38 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.1/8.8.5) with ESMTP id KAA02164; Fri, 4 Sep 1998 10:25:43 +0200 (CEST) To: Craig Johnston cc: freebsd-mobile@FreeBSD.ORG Subject: Re: vesa mode 0x102 (800x600) on tp560 In-reply-to: Your message of "Fri, 04 Sep 1998 03:21:51 CDT." Date: Fri, 04 Sep 1998 10:25:42 +0200 Message-ID: <2162.904897542@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Ahh. I was hoping for a full 800x600 text screen that would eliminate >the black borders. Is this something that might happen in the future? >An x text screen using the full 800x600 would be >kinda nifty. You know where to find the sources... -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 4 09:16:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA13730 for freebsd-mobile-outgoing; Fri, 4 Sep 1998 09:16:02 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id JAA13653 for ; Fri, 4 Sep 1998 09:16:00 -0700 (PDT) (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0zEyVP-0001ae-00; Fri, 4 Sep 1998 10:14:35 -0600 Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.1/8.8.3) with ESMTP id KAA02042 for ; Fri, 4 Sep 1998 10:14:29 -0600 (MDT) Message-Id: <199809041614.KAA02042@harmony.village.org> To: mobile@FreeBSD.ORG Subject: APM enhancements in userland Date: Fri, 04 Sep 1998 10:14:29 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've finally committed the userland portion of the APM enhancements that I've been babbling about for a long time. These will allow you to set the wakup timer, go into standby (rather than suspend) mode, as well as find out a tiny bit more about your APM BIOS than you could before. This allows me to have a script that checks the interrupt rate and when it falls to zero for all "interesting" devices, then I put my machine to sleep for an hour if I have power and my batteries are < 100% charged. The script is an utter hack, so I don't want to share it right now... Warner "Yes, I did get the Libretto 50CT, why do you ask?" Losh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 4 13:02:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23038 for freebsd-mobile-outgoing; Fri, 4 Sep 1998 13:02:03 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from lambic.physics.montana.edu (lambic.physics.montana.edu [153.90.192.128]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA22971 for ; Fri, 4 Sep 1998 13:01:55 -0700 (PDT) (envelope-from handy@lambic.physics.montana.edu) Received: from localhost (handy@localhost) by lambic.physics.montana.edu (8.8.8/8.8.7) with SMTP id OAA22253 for ; Fri, 4 Sep 1998 14:00:25 -0600 (MDT) (envelope-from handy@lambic.physics.montana.edu) Date: Fri, 4 Sep 1998 14:00:25 -0600 (MDT) From: Brian Handy To: freebsd-mobile@FreeBSD.ORG Subject: Partitioning HD's on a TP Message-ID: X-files: The truth is out there MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I'm setting up an IBM TP560X with a relatively gargantuan 6.4GB hard drive to run Win95 and FreeBSD. My plan was to make the Win95 partition 2GB and give the rest to FreeBSD, but I seem to be bumping up against the "keep all your root partitions below the 1024 cylinder limit" problem. In the tutorials there is talk of using an "LBA" mode under some BIOS setups. I haven't been able to locate this animal in the startup stuff on my Thinkpad. Is that because there isn't one, or is that because I haven't found it? Has anyone found a way around this, or am I going to be adjusting my partitions? Thanks, Brian -- Brian Handy Mail: handy@physics.montana.edu Department of Physics Phone: (406) 994-6317 Montana State University Fax: (406) 994-4452 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 4 15:31:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA17574 for freebsd-mobile-outgoing; Fri, 4 Sep 1998 15:31:56 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from shell6.ba.best.com (shell6.ba.best.com [206.184.139.137]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA17567 for ; Fri, 4 Sep 1998 15:31:53 -0700 (PDT) (envelope-from jkb@best.com) Received: from localhost (jkb@localhost) by shell6.ba.best.com (8.9.0/8.9.0/best.sh) with SMTP id PAA00780; Fri, 4 Sep 1998 15:30:40 -0700 (PDT) X-Authentication-Warning: shell6.ba.best.com: jkb owned process doing -bs Date: Fri, 4 Sep 1998 15:30:40 -0700 (PDT) From: "Jan B. Koum " X-Sender: jkb@shell6.ba.best.com To: Jian Peng cc: mobile@FreeBSD.ORG Subject: Re: zzz problem In-Reply-To: <35EF37C2.41C6@crab.rutgers.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Not if you suspend. When you suspend a laptop, instruction execution stops. However, in my laptop in bios I have an option where I can close laptop and still have it working. It just won't suspend. -- Yan I don't have the password + Jan Koum But the path is chainlinked | Spelled Jan, pronounced Yan. There. So if you've got the time | Web: http://www.best.com/~jkb Set the tone to sync + OS: http://www.FreeBSD.org On Thu, 3 Sep 1998, Jian Peng wrote: >Hi there, > >I have a quick question related. Is the PCMCIA ethernet adapter supposed >to be active under suspended state? Say, can I put the laptop to sleep >but still have the ftp or http daemon runing? >Thanks. > >Jay > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 5 05:01:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA18991 for freebsd-mobile-outgoing; Sat, 5 Sep 1998 05:01:57 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA18986 for ; Sat, 5 Sep 1998 05:01:53 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (IDENT:V4bJmI2OhCkQ7gm6kRERWbtRckH8SgFw@localhost [127.0.0.1]) by gratis.grondar.za (8.9.1/8.9.1) with ESMTP id NAA20965; Sat, 5 Sep 1998 13:59:02 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199809051159.NAA20965@gratis.grondar.za> To: Warner Losh cc: mobile@FreeBSD.ORG Subject: Re: APM enhancements in userland In-Reply-To: Your message of " Fri, 04 Sep 1998 10:14:29 CST." <199809041614.KAA02042@harmony.village.org> References: <199809041614.KAA02042@harmony.village.org> Date: Sat, 05 Sep 1998 13:59:00 +0200 From: Mark Murray Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Warner Losh wrote: > I've finally committed the userland portion of the APM enhancements > that I've been babbling about for a long time. ...&c Are ylo looking at the stuff that the PAO guys have done with a view to incorporating it? They have some useful things (eg, shutdown -x turns off your box) and their PCMCIA support is good. > Warner "Yes, I did get the Libretto 50CT, why do you ask?" Losh I have a Libretto 70CT :-) M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 5 08:11:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA00172 for freebsd-mobile-outgoing; Sat, 5 Sep 1998 08:11:37 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from post.mail.demon.net (post-11.mail.demon.net [194.217.242.40]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA00109; Sat, 5 Sep 1998 08:11:32 -0700 (PDT) (envelope-from freebsd-root@i-zone.demon.co.uk) Received: from [158.152.227.78] (helo=i-zone.demon.co.uk) by post.mail.demon.net with smtp (Exim 2.02 #1) id 0zFJyq-0003Oe-00; Sat, 5 Sep 1998 15:10:25 +0000 Message-ID: Date: Tue, 1 Sep 1998 17:12:10 +0100 To: freebsd-questions@FreeBSD.ORG Cc: freebsd-mobile@FreeBSD.ORG From: John Subject: ze & zp pcmcia ethernet question MIME-Version: 1.0 X-Mailer: Turnpike (32) Version 4.00 <8P7LwQhRCnIWQRT3OpZyTlnKDO> Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Experts (also posted to freebsd-mobile) I need to know if anyone has got either ze or zp to work with the Kingston KNE-PCM/M PCMCIA ethernet card. Any tips you may have in this respect will be greatly appreciated. Thanks -- John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 5 09:50:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA12553 for freebsd-mobile-outgoing; Sat, 5 Sep 1998 09:50:12 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from shell6.ba.best.com (shell6.ba.best.com [206.184.139.137]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA12545; Sat, 5 Sep 1998 09:50:07 -0700 (PDT) (envelope-from jkb@best.com) Received: from localhost (jkb@localhost) by shell6.ba.best.com (8.9.0/8.9.0/best.sh) with SMTP id JAA09696; Sat, 5 Sep 1998 09:48:58 -0700 (PDT) X-Authentication-Warning: shell6.ba.best.com: jkb owned process doing -bs Date: Sat, 5 Sep 1998 09:48:57 -0700 (PDT) From: "Jan B. Koum " X-Sender: jkb@shell6.ba.best.com To: John cc: freebsd-questions@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG Subject: Re: ze & zp pcmcia ethernet question In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello John, Look at http://jaz.jp.freebsd.org/PAO/supported.txt It say the card is supported as ed0 driver but is not tested. If you can tell us just now well this card works with FreeBSD it would be great. See http://www.jp.freebsd.org/PAO for more info on FreeBSD + laptops. -- Yan I don't have the password + Jan Koum But the path is chainlinked | Spelled Jan, pronounced Yan. There. So if you've got the time | Web: http://www.best.com/~jkb Set the tone to sync + OS: http://www.FreeBSD.org On Tue, 1 Sep 1998, John wrote: >Hi Experts > >(also posted to freebsd-mobile) > >I need to know if anyone has got either ze or zp to work with the >Kingston KNE-PCM/M PCMCIA ethernet card. Any tips you may have in this >respect will be greatly appreciated. > >Thanks >-- >John > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-mobile" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 5 10:02:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA14761 for freebsd-mobile-outgoing; Sat, 5 Sep 1998 10:02:23 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from word.smith.net.au (castles305.castles.com [208.214.167.5]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA14744 for ; Sat, 5 Sep 1998 10:02:19 -0700 (PDT) (envelope-from mike@word.smith.net.au) Received: from word.smith.net.au (localhost [127.0.0.1]) by word.smith.net.au (8.9.1/8.8.8) with ESMTP id KAA05819; Sat, 5 Sep 1998 10:07:21 -0700 (PDT) (envelope-from mike@word.smith.net.au) Message-Id: <199809051707.KAA05819@word.smith.net.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Mark Murray cc: Warner Losh , mobile@FreeBSD.ORG Subject: Re: APM enhancements in userland In-reply-to: Your message of "Sat, 05 Sep 1998 13:59:00 +0200." <199809051159.NAA20965@gratis.grondar.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 05 Sep 1998 10:07:20 -0700 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Warner Losh wrote: > > I've finally committed the userland portion of the APM enhancements > > that I've been babbling about for a long time. > ...&c > > Are ylo looking at the stuff that the PAO guys have done with a view > to incorporating it? > > They have some useful things (eg, shutdown -x turns off your box) 'shutdown -h' turns mine off right now, stock -current. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 5 14:01:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA11562 for freebsd-mobile-outgoing; Sat, 5 Sep 1998 14:01:07 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA11543 for ; Sat, 5 Sep 1998 14:00:59 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (IDENT:0AGAxpf9U+UksV/ySElvSKlcurlMgG6D@localhost [127.0.0.1]) by gratis.grondar.za (8.9.1/8.9.1) with ESMTP id WAA22337; Sat, 5 Sep 1998 22:58:40 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199809052058.WAA22337@gratis.grondar.za> To: Mike Smith cc: Warner Losh , mobile@FreeBSD.ORG Subject: Re: APM enhancements in userland In-Reply-To: Your message of " Sat, 05 Sep 1998 10:07:20 MST." <199809051707.KAA05819@word.smith.net.au> References: <199809051707.KAA05819@word.smith.net.au> Date: Sat, 05 Sep 1998 22:58:39 +0200 From: Mark Murray Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mike Smith wrote: > 'shutdown -h' turns mine off right now, stock -current. Cool! PCMCIA Support any good? M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 5 14:39:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA14721 for freebsd-mobile-outgoing; Sat, 5 Sep 1998 14:39:25 -0700 (PDT) (envelope-from owner-freebsd-mobile@FreeBSD.ORG) Received: from word.smith.net.au (castles176.castles.com [208.214.165.176]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA14713 for ; Sat, 5 Sep 1998 14:39:22 -0700 (PDT) (envelope-from mike@word.smith.net.au) Received: from word.smith.net.au (localhost [127.0.0.1]) by word.smith.net.au (8.9.1/8.8.8) with ESMTP id OAA06519; Sat, 5 Sep 1998 14:44:18 -0700 (PDT) (envelope-from mike@word.smith.net.au) Message-Id: <199809052144.OAA06519@word.smith.net.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Mark Murray cc: Mike Smith , Warner Losh , mobile@FreeBSD.ORG Subject: Re: APM enhancements in userland In-reply-to: Your message of "Sat, 05 Sep 1998 22:58:39 +0200." <199809052058.WAA22337@gratis.grondar.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 05 Sep 1998 14:44:17 -0700 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Mike Smith wrote: > > 'shutdown -h' turns mine off right now, stock -current. > > Cool! PCMCIA Support any good? I use modems and ethenet cards on a regular basis; works fine for me. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message