From owner-freebsd-mobile Sun Oct 17 8:53: 1 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from bachue.usc.unal.edu.co (bachue.usc.unal.edu.co [168.176.3.20]) by hub.freebsd.org (Postfix) with ESMTP id EB0CD14E36 for ; Sun, 17 Oct 1999 08:52:57 -0700 (PDT) (envelope-from giffunip@asme.org) Received: from asme.org ([168.176.3.62]) by bachue.usc.unal.edu.co (Netscape Messaging Server 3.6) with ESMTP id AAA387F for ; Sun, 17 Oct 1999 10:52:30 -0400 Message-ID: <3809F24B.88562A86@asme.org> Date: Sun, 17 Oct 1999 10:59:07 -0500 From: "Pedro F. Giffuni" Organization: Universidad Nacional de Colombia X-Mailer: Mozilla 4.5 [en]C-CCK-MCD {Sony} (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-mobile@FreeBSD.org Subject: Re: Success in a SONY VAIO PCG-F250 (Well... sort of) References: <199910031233.NAA63753@hak.lan.Awfulhak.org> <199910050459.WAA16064@harmony.village.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org FWIW, the linux site explains why the sound drivers will be so difficult to get working, and how SONY basicly made a cheap laptop: http://www.cl.cam.ac.uk/~and1000/vaioF-series.html (I don't have any use for them, but I would like to hear about IrDA and Firewire for FreeBSD though). cheers, Pedro. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 18 1: 2:24 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from titanium.yy.ics.keio.ac.jp (titanium.yy.ics.keio.ac.jp [131.113.47.73]) by hub.freebsd.org (Postfix) with ESMTP id 7B2AE14C18 for ; Mon, 18 Oct 1999 01:02:15 -0700 (PDT) (envelope-from sanpei@sanpei.org) Received: from lavender.yy.cs.keio.ac.jp (lavender.yy.ics.keio.ac.jp [131.113.47.22]) by titanium.yy.ics.keio.ac.jp (8.9.3+3.2W/3.7W) with ESMTP id RAA03740 for ; Mon, 18 Oct 1999 17:02:13 +0900 (JST) (envelope-from sanpei@sanpei.org) Received: (from sanpei@localhost) by lavender.yy.cs.keio.ac.jp (8.9.3/3.7W) id RAA07485; Mon, 18 Oct 1999 17:02:12 +0900 (JST) Message-Id: <199910180802.RAA07485@lavender.yy.cs.keio.ac.jp> To: freebsd-mobile@FreeBSD.org Subject: [PCCARD] experimental code, pccardc power X-Mailer: Mew version 1.70 on Emacs 19.34.1 / Mule 2.3 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Mon, 18 Oct 1999 17:02:11 +0900 From: MIHIRA Sanpei Yoshiro Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi. I created patch of pccardc power for -current. [from manual page], It turns ON/OFF a power supply of a card in the slot specified in turn OFF a power supply. If a card becomes unstable when it is removed at activate state, this can force it to turn into inactive state first and remove it safely. turn ON a power supply and into active state similar to a card insertion. For example, when I use NOTE-PC on train, I can't have any AC-power supply. I don't use Ethernet-Card on it, so I power down PC-Card without removeal by this funciotn and I can save battery power. This code was obtained from PAO. But I removed inactive state from PAO code. # but I did't remove about inactive state from man page patch... Any comments are welcome. Thank you. MIHIRA Sanpei Yoshiro Yokohama, Japan. --- sys/pccard/cardinfo.h.orig Mon Aug 2 03:12:50 1999 +++ sys/pccard/cardinfo.h Sat Oct 16 21:00:58 1999 @@ -45,6 +45,7 @@ #define PIOCRWFLAG _IOW('P', 7, int) /* Set flags for drv use */ #define PIOCRWMEM _IOWR('P', 8, unsigned long) /* Set mem for drv use */ #define PIOCSPOW _IOW('P', 9, struct power) /* Set power structure */ +#define PIOCSVIR _IOW('P', 10, int) /* Virtual insert/remove */ #define PIOCSBEEP _IOW('P', 11, int) /* Select Beep */ /* * Debug codes. --- sys/pccard/pccard.c.org Sat Oct 16 20:57:27 1999 +++ sys/pccard/pccard.c Sat Oct 16 20:59:42 1999 @@ -941,6 +941,7 @@ struct mem_desc *mp; struct io_desc *ip; int s, err; + int pwval; /* beep is disabled until the 1st call of crdioctl() */ pccard_beep_select(BEEP_ON); @@ -1070,6 +1071,35 @@ else pccard_failure_beep(); return err; + /* + * Virtual removal/insertion + */ + case PIOCSVIR: + pwval = *(int *)data; + /* virtual removal */ + if (!pwval) { + if (slt->state != filled) { + return EINVAL; + } + s = splhigh(); + disable_slot(slt); + slt->laststate = filled; + slt->state = empty; + splx(s); + pccard_remove_beep(); + selwakeup(&slt->selp); + } + /* virtual insertion */ + else { + if (slt->state != empty) { + return EINVAL; + } + slt->insert_seq = 1; + slt->insert_ch = timeout(inserted, (void *)slt, hz/4); + pccard_insert_beep(); + break; + } + break; case PIOCSBEEP: if (pccard_beep_select(*(int *)data)) { return EINVAL; --- usr.sbin/pccard/pccardc/Makefile Sat Aug 28 19:18:20 1999 +++ usr.sbin/pccard/pccardc/Makefile Fri Sep 3 22:34:05 1999 @@ -5,7 +5,7 @@ # PROG= pccardc SRCS= beep.c dumpcis.c enabler.c pccardc.c pccardmem.c printcis.c \ - rdattr.c rdmap.c rdreg.c readcis.c wrattr.c wrreg.c + rdattr.c rdmap.c rdreg.c readcis.c wrattr.c wrreg.c power.c MAN8= pccardc.8 CFLAGS+= -I${.CURDIR}/../pccardd --- usr.sbin/pccard/pccardc/pccardc.c Sat Aug 28 19:18:20 1999 +++ usr.sbin/pccard/pccardc/pccardc.c Fri Sep 3 22:33:54 1999 @@ -41,11 +41,13 @@ DECL(enabler_main); DECL(help_main); DECL(pccardmem_main); +DECL(power_main); DECL(rdattr_main); DECL(rdmap_main); DECL(rdreg_main); DECL(wrattr_main); DECL(wrreg_main); struct { char *name; @@ -57,11 +59,13 @@ { "enabler", enabler_main, "Device driver enabler" }, { "help", help_main, "Prints command summary" }, { "pccardmem", pccardmem_main, "Allocate memory for pccard driver" }, + { "power", power_main, "Power on/off slots" }, { "rdattr", rdattr_main, "Read attribute memory" }, { "rdmap", rdmap_main, "Read pcic mappings" }, { "rdreg", rdreg_main, "Read pcic register" }, { "wrattr", wrattr_main, "Write byte to attribute memory" }, { "wrreg", wrreg_main, "Write pcic register" }, { 0, 0 } }; --- usr.sbin/pccard/pccardc/power.c Thu Jan 1 09:00:00 1970 +++ usr.sbin/pccard/pccardc/power.c Wed Sep 1 22:44:02 1999 @@ -0,0 +1,80 @@ +/* + * Copyright (c) 1995 Andrew McRae. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Code cleanup, bug-fix and extension + * by Tatsumi Hosokawa + */ + +#ifndef lint +static const char rcsid[] = + "$Id: power.c,v 1.3 1999/02/11 05:00:54 kuriyama Exp $"; +#endif /* not lint */ + +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +int +power_main(argc, argv) + int argc; + char *argv[]; +{ + int fd, i, newstat, valid = 1; + char name[64], *p; + + if (argc != 3) + valid = 0; + for (i = 1; i <= 2; i++) { + if (valid) { + for (p = argv[i]; *p; p++) { + if (!isdigit(*p)) { + valid = 0; + break; + } + } + } + } + if (!valid) + errx(1, "Usage: %s power slot newstat", argv[0]); + + sscanf(argv[2], "%d", &newstat); + sprintf(name, CARD_DEVICE, atoi(argv[1])); + fd = open(name, O_RDWR); + if (fd < 0) + err(1, "%s", name); + newstat = newstat ? 1 : 0; + if (ioctl(fd, PIOCSVIR, &newstat) < 0) + err(1, "ioctl (PIOCSVIR)"); + return 0; +} --- usr.sbin/pccard/pccardc/pccardc.8.org Wed Oct 13 00:35:08 1999 +++ usr.sbin/pccard/pccardc/pccardc.8 Wed Oct 13 00:37:11 1999 @@ -54,6 +54,8 @@ Print command summary .It Pa pccardmem Allocate memory for pccard driver +.It Pa power +Power on/off slots .It Pa rdattr Read attribute memory .It Pa rdmap @@ -161,6 +163,21 @@ .Pa pccard_mem in .Xr rc.conf 5 . +.It +.Nm power Ar slot 0|1 +.Pp +It turns ON/OFF a power supply of a card in the slot specified in +.Ar slot . +.Pp +.Bl -tag -width Ds +.It Ar 0 +turn OFF a power supply. If a card becomes unstable when it is removed at +activate state, +this can force it to turn into inactive state first and remove it safely. +.It Ar 1 +turn ON a power supply and into active state similar to a card insertion. +.El +.Pp .It .Nm rdattr Ar slot offs length .Pp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 18 21:55: 2 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id A71D215D7B; Mon, 18 Oct 1999 21:53:19 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id WAA07991; Mon, 18 Oct 1999 22:53:16 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: (from imp@localhost) by harmony.village.org (8.9.3/8.8.3) id WAA03278; Mon, 18 Oct 1999 22:52:44 -0600 (MDT) Date: Mon, 18 Oct 1999 22:52:44 -0600 (MDT) From: Warner Losh Message-Id: <199910190452.WAA03278@harmony.village.org> To: current@freebsd.org, mobile@freebsd.org Subject: FreeBSD CON and laptops Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org During this week I have two goals here at FreeBSD con. 1 is to kludge up a working sio driver. The second is to help fix those folks I've broken by my latest changes. Please trip me while I'm here if youare seeing problems. I have most of the sio driver mods done, but I'm doing something silly in newbus so need to talk to dfr, et al, about it. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 20 1:38:21 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from pooh.elsevier.nl (pooh.elsevier.nl [145.36.9.32]) by hub.freebsd.org (Postfix) with ESMTP id 7E5061AEEB for ; Wed, 20 Oct 1999 01:38:04 -0700 (PDT) (envelope-from steve@pooh.elsevier.nl) Received: (from steve@localhost) by pooh.elsevier.nl (8.9.3/8.9.3) id JAA00391; Wed, 20 Oct 1999 09:37:04 +0100 (IST) (envelope-from steve) Message-ID: X-Mailer: XFMail 1.3.1 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Wed, 20 Oct 1999 09:37:03 +0100 (IST) From: "Steve O'Hara-Smith" To: freebsd-mobile@freebsd.org Subject: FreeBSD on a Compaq 1690 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, First the good news, FreeBSD works fine on these beasts and drives nearly everything well. The bad news: The ESS-SOLO sound card needs OSS to drive it :( - minor The modem is a Lucent winmodem thingy :( - minor Hibernate to disc partition won't (compaq problem it only works to file in Windows and then only if FreeBSD hasn't booted since the file was created - most odd, clues appreciated). Suspend and resume slows the system down hugely (apmconf -t doesn't help), doing it twice makes things worse, I haven't tried more. What should I try in order to get a handle on this. All this with 3.3-STABLE about two weeks old. ------------------------------------------------------- Tell a computer to WIN and ... ... You lose ------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 20 5: 2:34 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id 6037B1AEE3 for ; Wed, 20 Oct 1999 05:02:30 -0700 (PDT) (envelope-from adam@algroup.co.uk) Received: from algroup.co.uk ([193.195.56.225]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id MAA20342 for ; Wed, 20 Oct 1999 12:02:29 GMT Message-ID: <380DAF55.DA8F405E@algroup.co.uk> Date: Wed, 20 Oct 1999 13:02:29 +0100 From: Adam Laurie Organization: A.L. Group plc X-Mailer: Mozilla 4.07 [en] (Win95; I) MIME-Version: 1.0 To: FreeBSD Mobile Subject: rc.firewall patches Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I've been working on some patches to the /etc/rc.firewall script to provide a template for mobiles - is this the apropriate list to post the patches to, or should I talk directly to whoever maintains that bit of FreeBSD (and if so, who is it)? cheers, Adam -- Adam Laurie Tel: +44 (181) 742 0755 A.L. Digital Ltd. Fax: +44 (181) 742 5995 Voysey House Barley Mow Passage http://www.aldigital.co.uk London W4 4GB mailto:adam@algroup.co.uk UNITED KINGDOM PGP key on keyservers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 20 7:49:34 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id 800B71BAD7; Wed, 20 Oct 1999 07:49:03 -0700 (PDT) (envelope-from jcm@dogma.freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 1.92 #3) id 11dx30-000Psh-00; Wed, 20 Oct 1999 15:49:02 +0100 Received: from localhost (jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) with SMTP id PAA19167; Wed, 20 Oct 1999 15:49:01 +0100 (BST) (envelope-from jcm@dogma.freebsd-uk.eu.org) Date: Wed, 20 Oct 1999 15:49:01 +0100 (BST) From: J McKitrick To: freebsd-questions@freebsd.org, freebsd-mobile@freebsd.org 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 Has anyone had ANY success interfacing the 250 meg zip drive parallel port version with FBSD? -jm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 20 14:44:50 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from hotmail.com (f187.law4.hotmail.com [216.33.149.187]) by hub.freebsd.org (Postfix) with SMTP id E221214A0D for ; Wed, 20 Oct 1999 14:44:48 -0700 (PDT) (envelope-from gandalf24@hotmail.com) Received: (qmail 88081 invoked by uid 0); 20 Oct 1999 21:44:47 -0000 Message-ID: <19991020214447.88080.qmail@hotmail.com> Received: from 216.67.5.49 by www.hotmail.com with HTTP; Wed, 20 Oct 1999 14:44:46 PDT X-Originating-IP: [216.67.5.49] From: "Gandalf T. Grey" To: freebsd-mobile@freebsd.org Subject: Fwd: 3 Questions for 3.2-RELEASE Setup on Thinkpad 560X Date: Wed, 20 Oct 1999 14:44:46 PDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greetings, I'm forwarding two out of three question to 'mobile' which were not answered on the 'questions' list... In my quest to get a 'real' OS running on my 560X, I've searched the man pages, handbook, FAQ, mailing list archives, 'The Complete FreeBSD', and a score of web sites. After weeks of dedicated effort, I think I'm in the home stretch, but I still have [two] nagging problems that I can't resolve: 1. When I set the device speed for my 28.8 Hayes Optima PCMCIA modem to 28800, I connect to my ISP at 9600 and can surf very slowly. When I set the device speed higher, I get a connect message, but all I see is gibberish in the user-PPP term, so I can't log in. I am using a very generic INIT string, ATE1Q0M0, which may be the problem. Does anyone have an INIT string for the Hayes Optima 28.8 PCMCIA that allows them to actually connect at 28800, or know of some other reason why I might be having this problem? 2. Last but far from least, the 560X does not have an internal CD-ROM, so I have an external Panasonic KXL with a PCMCIA SCSI card. The card seems to be a KME KXLC004. Since the 2 and 3 may work with the ncv0 driver, I wanted to try it with the 4. I tried to compile it into the kernel (I'm using PAO3 by the way), but I don't see ncv0 even try to probe at boot time. Does anyone know what the right driver is for this SCSI pcard, where I can find it, and what settings to use? Well, that's it. Thanks for taking the time to read about my problems, and TIA if you can offer any assistance on solving them. Regards, gandalf24@hotmail.com ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 20 17:43:31 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from dt050n71.san.rr.com (dt050n71.san.rr.com [204.210.31.113]) by hub.freebsd.org (Postfix) with ESMTP id E63C414DE1; Wed, 20 Oct 1999 17:43:24 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gateway.gorean.org (gateway.gorean.org [10.0.0.1]) by dt050n71.san.rr.com (8.9.3/8.8.8) with ESMTP id RAA40443; Wed, 20 Oct 1999 17:41:58 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Wed, 20 Oct 1999 17:41:57 -0700 (PDT) From: Doug Barton X-Sender: doug@dt050n71.san.rr.com To: J McKitrick Cc: freebsd-questions@freebsd.org, freebsd-mobile@freebsd.org Subject: Re: your mail 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 Wed, 20 Oct 1999, J McKitrick wrote: > Has anyone had ANY success interfacing the 250 meg zip drive parallel > port version with FBSD? I don't have any hard data, just a bit of experience. Iomega seems to take every opportunity to make gratuitous changes to their API between revisions of the same model of a drive, so it's not too much to believe that their 250 paralell version would be different than the 100's. These problems are much less serious with the SCSI models. Good luck, Doug -- "Stop it, I'm gettin' misty." - Mel Gibson as Porter, "Payback" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 20 23: 0:30 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from picalon.gun.de (picalon.gun.de [192.109.159.1]) by hub.freebsd.org (Postfix) with ESMTP id 841E21502B for ; Wed, 20 Oct 1999 23:00:06 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: from klemm.gtn.com (pppak04.gtn.com [194.231.123.169]) by picalon.gun.de (8.9.3/8.9.3) with ESMTP id IAA07445 for ; Thu, 21 Oct 1999 08:00:01 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.9.3/8.9.3) id HAA15041 for mobile@freebsd.org; Thu, 21 Oct 1999 07:58:04 +0200 (CEST) (envelope-from andreas) Date: Thu, 21 Oct 1999 07:58:03 +0200 From: Andreas Klemm To: mobile@freebsd.org Subject: profile manager for FreeBSD working in different environments ? Message-ID: <19991021075803.A14781@titan.klemm.gtn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre1i X-Operating-System: FreeBSD 3.3-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi ! When running FreeBSD on a Laptop, I'd whish to have a profile manager active, who asks me, what FreeBSD configuration I want to boot. The task would be to write a profile manager, which allows you to create/manage different sets of rc.conf files and which let's you choose, with what rc.conf file you want to boot... rc.conf.company rc.conf.home rc.conf.customer1 rc.conf.customer2 rc.conf.customer3 rc.conf.customer4 Purpose: manage it easily, to get a Laptop up and running at different sites with a minumum of effort... Example: At home I have another fixed IP address. Another default gateway. Maybe at another site I need RIP2 routing, etc ... DHCP, yes/no .... Does somebody ever thought of this or already managed this ? Good would be a startup script, that detects some instances of rc.conf and offers the user for some configurable delay, to boot configuration 1..n Given: /etc/rc.conf.home /etc/rc.conf.company /etc/rc.conf.school /etc/rc.conf.fred Should produce something like this: Which Profile do you want to boot ? 1.... home 2.... company 3.... school 4.... fred 29 seconds left ^--- configurable counter ... What do you think of this ? Andreas /// -- Andreas Klemm http://www.FreeBSD.ORG/~andreas http://www.freebsd.org/~fsmp/SMP/SMP.html powered by Symmetric MultiProcessor FreeBSD Get new songs from our band: http://www.freebsd.org/~andreas/64bits/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 20 23: 8: 6 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id B789514C27 for ; Wed, 20 Oct 1999 23:07:50 -0700 (PDT) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id PAA20289; Thu, 21 Oct 1999 15:37:35 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.3.1 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <19991021075803.A14781@titan.klemm.gtn.com> Date: Thu, 21 Oct 1999 15:37:35 +0930 (CST) From: "Daniel O'Connor" To: Andreas Klemm Subject: RE: profile manager for FreeBSD working in different environment Cc: mobile@freebsd.org Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 21-Oct-99 Andreas Klemm wrote: > Does somebody ever thought of this or already managed this ? > Good would be a startup script, that detects some instances > of rc.conf and offers the user for some configurable delay, > to boot configuration 1..n > What do you think of this ? I like it but you'd need it to be able to do the deed for other files like /etc/resolv.conf, /etc/host.conf, etc.. The ideas nice and I keep thinking I should write it, but alas I never get around to it :) --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 20 23: 9:51 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from swan.en-bio.com.au (swan.en-bio.com.au [203.35.254.3]) by hub.freebsd.org (Postfix) with ESMTP id 4BB6714C27 for ; Wed, 20 Oct 1999 23:09:43 -0700 (PDT) (envelope-from Tony.Maher@eBioinformatics.com) Received: from shad.internal.en-bio (www-cache.en-bio.com.au [203.35.254.2]) by swan.en-bio.com.au (8.9.1a/8.9.1) with ESMTP id QAA13955; Thu, 21 Oct 1999 16:09:39 +1000 Received: (from tonym@localhost) by shad.internal.en-bio (8.9.1b+Sun/8.9.1) id QAA14733; Thu, 21 Oct 1999 16:09:12 +1000 (EST) Date: Thu, 21 Oct 1999 16:09:12 +1000 (EST) From: Tony Maher Message-Id: <199910210609.QAA14733@shad.internal.en-bio> To: andreas@klemm.gtn.com Cc: mobile@FreeBSD.ORG Subject: Re: profile manager for FreeBSD working in different environments ? Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > When running FreeBSD on a Laptop, I'd whish to have a profile > manager active, who asks me, what FreeBSD configuration I want > to boot. > > What do you think of this ? Nice. Currently I have two scripts (home and work) that set IP's and default gateways that I manually run as required. (well work is default settings so its really just home that gets run). tonym To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 1: 7:42 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id 1625C14C02 for ; Thu, 21 Oct 1999 01:07:38 -0700 (PDT) (envelope-from adam@algroup.co.uk) Received: from algroup.co.uk ([193.195.56.225]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id IAA13846; Thu, 21 Oct 1999 08:06:24 GMT Message-ID: <380EC97F.B86F642B@algroup.co.uk> Date: Thu, 21 Oct 1999 09:06:23 +0100 From: Adam Laurie Organization: A.L. Group plc X-Mailer: Mozilla 4.07 [en] (Win95; I) MIME-Version: 1.0 To: "Daniel O'Connor" Cc: Andreas Klemm , mobile@FreeBSD.ORG Subject: Re: profile manager for FreeBSD working in different environment References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Daniel O'Connor wrote: > > On 21-Oct-99 Andreas Klemm wrote: > > Does somebody ever thought of this or already managed this ? > > Good would be a startup script, that detects some instances > > of rc.conf and offers the user for some configurable delay, > > to boot configuration 1..n > > > What do you think of this ? > > I like it but you'd need it to be able to do the deed for other files like > /etc/resolv.conf, /etc/host.conf, etc.. > > The ideas nice and I keep thinking I should write it, but alas I never get > around to it :) I have created a script called pccard-site, which administers the above files and automates the process of switching between them, plus some patches to the pccard scripts... I posted them to the author of PAO some time ago, but have had no response - I use it regularly, so it is quite reliable, but if you guys would like to beta it with a view to releasing it to the community I would be happy to post them to you... cheers, Adam -- Adam Laurie Tel: +44 (181) 742 0755 A.L. Digital Ltd. Fax: +44 (181) 742 5995 Voysey House Barley Mow Passage http://www.aldigital.co.uk London W4 4GB mailto:adam@algroup.co.uk UNITED KINGDOM PGP key on keyservers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 4:10:40 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id 27B8014C81 for ; Thu, 21 Oct 1999 04:10:32 -0700 (PDT) (envelope-from jcm@dogma.freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 1.92 #3) id 11eG74-000G66-00; Thu, 21 Oct 1999 12:10:30 +0100 Received: from localhost (jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) with SMTP id MAA26630; Thu, 21 Oct 1999 12:10:29 +0100 (BST) (envelope-from jcm@dogma.freebsd-uk.eu.org) Date: Thu, 21 Oct 1999 12:10:29 +0100 (BST) From: J McKitrick To: Adam Laurie Cc: "Daniel O'Connor" , Andreas Klemm , mobile@freebsd.org Subject: Re: profile manager for FreeBSD working in different environment In-Reply-To: <380EC97F.B86F642B@algroup.co.uk> 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 would definitely be interested in seeing these scripts ! On Thu, 21 Oct 1999, Adam Laurie wrote: > >I have created a script called pccard-site, which administers the above >files and automates the process of switching between them, plus some >reliable, but if you guys would like to beta it with a view to releasing >it to the community I would be happy to post them to you... > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 4:21:10 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id 532BE14A24; Thu, 21 Oct 1999 04:20:53 -0700 (PDT) (envelope-from jcm@dogma.freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 1.92 #3) id 11eGH5-0000mk-00; Thu, 21 Oct 1999 12:20:51 +0100 Received: from localhost (jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) with SMTP id MAA26695; Thu, 21 Oct 1999 12:20:51 +0100 (BST) (envelope-from jcm@dogma.freebsd-uk.eu.org) Date: Thu, 21 Oct 1999 12:20:51 +0100 (BST) From: J McKitrick To: freebsd-questions@freebsd.org, mobile Subject: ISP connection dropped 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'm using a Toshiba Laptop with a Noteworthy 56k PCMCIA modem. I've been using these 2 ISPs for some time now in windows and Linux. But since I have switched to FBSD, these same ISPs drop the connection every 2-15 minutes. I have no warning... suddenly DNS quits, then the carrier is gone. I have tried different combinations of modem options to drop X2 and 56K support, but nothing seems to work. Only FBSD does this, and it doesn't matter whether i use ppp or KPPP. Does anyone have any ideas? p.s. I emailed my ISPs, asking them to check my log files. They said they had no clue, I should call the modem manufacturer. -jm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 5:38:18 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id 475E014E89 for ; Thu, 21 Oct 1999 05:37:43 -0700 (PDT) (envelope-from adam@algroup.co.uk) Received: from algroup.co.uk ([193.195.56.225]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id MAA26163; Thu, 21 Oct 1999 12:34:46 GMT Message-ID: <380F0865.99924F2B@algroup.co.uk> Date: Thu, 21 Oct 1999 13:34:45 +0100 From: Adam Laurie Organization: A.L. Group plc X-Mailer: Mozilla 4.07 [en] (Win95; I) MIME-Version: 1.0 To: J McKitrick Cc: "Daniel O'Connor" , Andreas Klemm , mobile@FreeBSD.ORG Subject: Re: profile manager for FreeBSD working in different environment References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org OK - I'll dig 'em out over the weekend - haven't got my laptop with me at the moment... cheers, Adam J McKitrick wrote: > > I would definitely be interested in seeing these scripts ! > > On Thu, 21 Oct 1999, Adam Laurie wrote: > > > >I have created a script called pccard-site, which administers the above > >files and automates the process of switching between them, plus some > > >reliable, but if you guys would like to beta it with a view to releasing > >it to the community I would be happy to post them to you... > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-mobile" in the body of the message -- Adam Laurie Tel: +44 (181) 742 0755 A.L. Digital Ltd. Fax: +44 (181) 742 5995 Voysey House Barley Mow Passage http://www.aldigital.co.uk London W4 4GB mailto:adam@algroup.co.uk UNITED KINGDOM PGP key on keyservers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 8:26:26 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from picalon.gun.de (picalon.gun.de [192.109.159.1]) by hub.freebsd.org (Postfix) with ESMTP id 22D6114BEF for ; Thu, 21 Oct 1999 08:26:17 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: from klemm.gtn.com (pppak04.gtn.com [194.231.123.169]) by picalon.gun.de (8.9.3/8.9.3) with ESMTP id RAA13898; Thu, 21 Oct 1999 17:26:11 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.9.3/8.9.3) id RAA34241; Thu, 21 Oct 1999 17:25:32 +0200 (CEST) (envelope-from andreas) Date: Thu, 21 Oct 1999 17:25:32 +0200 From: Andreas Klemm To: J McKitrick Cc: Adam Laurie , "Daniel O'Connor" , Andreas Klemm , mobile@freebsd.org Subject: pccardd initializes interf. too late (arpwatch port exits earlier...) Message-ID: <19991021172532.A33862@titan.klemm.gtn.com> References: <380EC97F.B86F642B@algroup.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre1i In-Reply-To: X-Operating-System: FreeBSD 3.3-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org BTW, I got it managed now to configure rc.conf right for my Xircon PCMCIA card. But ports like arpwatch startup earlier and exit, because they can't find an ethernet device early enough. What possibilities do I have, to give pccardd to initialize the xe0 interface first and then starting network things ... Andreas /// On Thu, Oct 21, 1999 at 12:10:29PM +0100, J McKitrick wrote: > > I would definitely be interested in seeing these scripts ! > > On Thu, 21 Oct 1999, Adam Laurie wrote: > > > >I have created a script called pccard-site, which administers the above > >files and automates the process of switching between them, plus some > > >reliable, but if you guys would like to beta it with a view to releasing > >it to the community I would be happy to post them to you... > > -- Andreas Klemm http://www.FreeBSD.ORG/~andreas http://www.freebsd.org/~fsmp/SMP/SMP.html powered by Symmetric MultiProcessor FreeBSD Get new songs from our band: http://www.freebsd.org/~andreas/64bits/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 8:31:38 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from pooh.elsevier.nl (pooh.elsevier.nl [145.36.9.32]) by hub.freebsd.org (Postfix) with ESMTP id DEF6614F2E for ; Thu, 21 Oct 1999 08:31:34 -0700 (PDT) (envelope-from steve@pooh.elsevier.nl) Received: (from steve@localhost) by pooh.elsevier.nl (8.9.3/8.9.3) id QAA03117; Thu, 21 Oct 1999 16:29:54 +0100 (IST) (envelope-from steve) Message-ID: X-Mailer: XFMail 1.3.1 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <19991021172532.A33862@titan.klemm.gtn.com> Date: Thu, 21 Oct 1999 16:29:52 +0100 (IST) From: "Steve O'Hara-Smith" To: Andreas Klemm Subject: RE: pccardd initializes interf. too late (arpwatch port exits ea Cc: mobile@FreeBSD.ORG, "Daniel O'Connor" , Adam Laurie , J McKitrick Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 21-Oct-99 Andreas Klemm wrote: > BTW, I got it managed now to configure rc.conf right for my > Xircon PCMCIA card. But ports like arpwatch startup earlier > and exit, because they can't find an ethernet device early > enough. > > What possibilities do I have, to give pccardd to initialize > the xe0 interface first and then starting network things ... Modify the insert and/or remove scripts mentioned in pccard.conf, preferably by making new ones and changing pccard.conf to use the new ones. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 9: 5: 9 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from dingo.cdrom.com (picasso.transbay.net [209.133.53.6]) by hub.freebsd.org (Postfix) with ESMTP id 82DFF14C59 for ; Thu, 21 Oct 1999 09:04:57 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.3/8.8.8) with ESMTP id IAA00657; Thu, 21 Oct 1999 08:56:47 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199910211556.IAA00657@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Andreas Klemm Cc: mobile@freebsd.org Subject: Re: profile manager for FreeBSD working in different environments ? In-reply-to: Your message of "Thu, 21 Oct 1999 07:58:03 +0200." <19991021075803.A14781@titan.klemm.gtn.com> Mime-Version: 1.0 Content-Type: multipart/mixed ; boundary="==_Exmh_19463152480" Date: Thu, 21 Oct 1999 08:56:46 -0700 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multipart MIME message. --==_Exmh_19463152480 Content-Type: text/plain; charset=us-ascii > Hi ! > > When running FreeBSD on a Laptop, I'd whish to have a profile > manager active, who asks me, what FreeBSD configuration I want > to boot. Try this. Put it in /sbin, and add 'personality menu 5' in /etc/rc just after / is mounted read/write. --==_Exmh_19463152480 Content-Type: text/plain ; name="personality"; charset=us-ascii Content-Description: personality Content-Disposition: attachment; filename="personality" #!/bin/sh ############################################################################## # # Copyright (c) 1997 Michael Smith # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # $Id$ # ############################################################################## # # This script provides functionality for manipulating collections of # configuration files which can be organised so as to alter the # personality of a system. # # Initially, the "base" personality is established. This personality # contains the "reference" copies of configuration files, and is used # when creating new personalities. The files which are currently # considered part of the system's personality are those contained in # the base personality. # # A new personality is established by making a copy of the base # personality under a new name. Each personality maintains a # separate copy of all configuration files under /etc/personality. # # To install a new personality, the files currently in place are # saved back to the current personality as indicated in # /etc/personality/current, and the files for the new personality # copied into place. The 'select' and 'menu' commands which perform # these installations are implemented in such a fashion as to only # require the tools available on the root filesystem, so that they # may be invoked at the earliest stage during system startup. # # If the current personality has become damaged, it can be restored # from the saved copy. # # Files can be added to and removed from the personality set. When # a new file is added, it is copied from the current system into all # personalities and added to the list file. When a file is removed # the current version is kept in place, but all copies are removed # from saved personalities and the file is removed from the list. # # XXX To Do : # Files can be inherited by one personality from another. This is # simply achieved by copying the relevant files under /etc/personality, # and into the current system if required. # ############################################################################## # Establish some global constants P_ROOT=/etc/personality #P_ROOT=/tmp/personality P_BASE="${P_ROOT}/_base" P_CURRENT="${P_ROOT}/current" P_FILES="${P_ROOT}/files" P_LIST="${P_ROOT}/list" scriptname="$0" ############################################################################## # pers_main # # Execution begins here after the file has been read. # pers_main() { case "$1" in menu) pers_menu $2 $3 ;; select) pers_select $2 ;; restore) pers_restore ;; save) pers_save ;; saveas) pers_saveas $2 pers_reindex ;; create) pers_create $2 pers_reindex ;; delete) pers_delete $2 pers_reindex ;; add) pers_add $2 pers_reindex ;; list) pers_list ;; remove) pers_remove $2 pers_reindex ;; init) pers_init pers_reindex ;; *) usage ;; esac } ############################################################################## # pers_menu # # Present a menu of currently-selectable personalities, assign hotkeys, # describe the default and optionally go with the default after a timeout # pers_menu() { # Look and see if there's actually anything to work with if [ ! -d "${P_ROOT}" ]; then return fi # Pick up a timeout if specified, default to 10 seconds timeout=10 if [ ! -z "$1" ]; then timeout="$1" fi # Assign a default, if suitable defpers="" defname="" if [ -f "${P_CURRENT}" ]; then defpers=`cat "${P_CURRENT}"` defname="${defpers}" fi # Loop prompting/reading input until we get a result while :; do # Print menu echo ""; echo "Select System Personality" echo "=========================" hkey=0 for pers in `cat "${P_LIST}"`; do echo " ${hkey}) ${pers}" eval index_${hkey}="${pers}" hkey=`expr ${hkey} + 1` done echo ""; echo " Default : ${defname}" read -t "${timeout}" -p " Selection : " input eval selvar=\$index_"${input}" selpers="" if [ -z "${input}" ]; then selpers="${defpers}" break elif [ -n "${selvar}" ]; then selpers="${selvar}" break elif [ -d "${P_ROOT}/_${input}" ]; then selpers="${input}" break fi done # $selpers now contains the personality we wish to select, # or is empty if we selected the default when there was none if [ -z "${selpers}" ]; then return fi # select the personality nominated pers_select "${selpers}" } ############################################################################## # pers_select # # Copy the files from the nominated personality out of the repository # into the real system. Note that this must be able to run with # nothing other than the contents of /bin available. # pers_select() { src="${P_ROOT}/_$1"; if [ ! -d "${src}" ]; then fail "no such personality '$1'" fi # Iterate over the file listing, copy them all out for file in `cat "${P_FILES}"`; do cp -p "${src}/${file}" "${file}" done # Register this personality as being current echo "$1" > "${P_CURRENT}" } ############################################################################## # pers_restore # # Reload the configuration files for the current personality, eliminating # any changes that may have been made. # pers_restore() { if [ ! -e "${P_CURRENT}" ]; then fail "no personality currently active" fi # Check that the current personality exists pers=`cat "${P_CURRENT}"` src="${P_ROOT}/_${pers}" if [ ! -d "${src}" ]; then fail "current personality '${pers}' not in the repository!" fi # Iterate over the file listing, copy them all out for file in `cat "${P_FILES}"`; do cp -p "${src}/${file}" "${file}" done } ############################################################################## # pers_save # # If a personality is current, save the current set of files to that # personality. # pers_save() { if [ ! -e "${P_CURRENT}" ]; then fail "no personality currently active" fi # Check that the current personality exists pers=`cat "${P_CURRENT}"` dest="${P_ROOT}/_${pers}" if [ ! -d "${dest}" ]; then fail "current personality '${pers}' not in the repository!" fi # OK, go ahead and save stuff. If this fails, we're # moderately stuffed, so don't worry about it. for file in `cat "${P_FILES}"`; do stub=`dirname "${file}"` mkdir -p "${dest}/${stub}" cp -p "${file}" "${dest}/${file}" done } ############################################################################## # pers_saveas # # Take the currently-active set of configuration files, and save them as # a new personality, set the new personality as current. # pers_saveas() { dest="${P_ROOT}/_$1" if [ -e "${dest}" ]; then fail "cannot create new personality '$1', name already in use" fi # Create the personality directory mkdir -p "${dest}" || pers_saveas_fail "$1" # iterate over files to save, copy them in for file in `cat "${P_FILES}"`; do stub=`dirname "${file}"` mkdir -p "${dest}/${stub}" cp -p "${file}" "${dest}/${file}" || pers_saveas_fail $1 done # new personality is current echo "$1" > "${P_CURRENT}" } ######################################## # pers_saveas_fail # # The 'save as' operation failed. Clean # up and emit a failure message. # pers_saveas_fail() { rm -Rf "${P_ROOT}/_$1" fail "could not save current personality as '$1'" } ############################################################################## # pers_create # # Create a new personality, duplicated from the current base personality # pers_create() { if [ -e "${P_ROOT}/_$1" ]; then fail "cannot create new personality '$1', name already in use" fi # Ok, duplicate it cp -Rp "${P_BASE}" "${P_ROOT}/_$1" || pers_create_fail "$1" } ######################################## # pers_create_fail # # An attempt to create a personality failed. # Clean up and exit with an error message. # pers_create_fail() { rm -Rf "${P_ROOT}/_$1" fail "'$1' could not be created" } ############################################################################## # pers_delete # # Remove a personality from the system. It is legitimate to remove # the current personality. # pers_delete() { if [ ! -e "${P_ROOT}/_$1" ]; then fail "no such personality '$1' to remove" fi if [ "$1" = _base ]; then fail "cannot remove base personality" fi # If the requested personality is current, remove the # reference. if [ -e "${P_CURRENT}" ]; then if [ `cat "${P_CURRENT}"` = "$1" ]; then rm -f "${P_CURRENT}" fi fi # Remove the repository entry rm -Rf "${P_ROOT}/_$1"; # Make sure it's gone if [ -e "${P_ROOT}/_$1" ]; then fail "failed to completely remove personality '$1'"; fi } ############################################################################## # pers_add # # Add a new file to the system; copy it from the 'real' path into # each personality directory. Check first to make sure it's not already # part of the system, and check that the path supplied is absolute. # # The file is stored with its full path relative to the repository # directory. # pers_add() { if [ ! -r "/$1" ]; then fail "cannot read '$1' to add to the Personality System" fi if [ -e "${P_BASE}/$1" ]; then fail "file '$1' already part of the Personality System" fi if [ ! -f "$1" ]; then fail "only files can be added to the Personality System" fi # looks OK, copy it in stub=`dirname "$1"` for targ in ${P_ROOT}/_*; do mkdir -p "${targ}/${stub}" cp -p "$1" "${targ}/${stub}" || pers_add_fail "$1"; done } ######################################## # pers_add_fail # # A failure occurred while adding a file to # the repository; back out any copies that # made it in and abort with an error. # pers_add_fail() { for cand in ${P_ROOT}/_*; do if [ -f "${cand}/$1" ]; then rm -f "${cand}/$1"; fi done fail "'$1' could not be added"; } ############################################################################## # pers_remove # # Remove a file from all personalities in the repository. # pers_remove() { if [ ! -f "${P_BASE}/$1" ]; then fail "'$1' is not part of the Personality System"; fi # OK, it should be there; nuke whatever we can find for cand in ${P_ROOT}/_*; do if [ -f "${cand}/$1" ]; then rm -f "${cand}/$1"; fi done } ############################################################################## # pers_list # # List all of the files that comprise the system personality. # pers_list() { echo "Current personalities:" for pers in `cat "${P_LIST}"`; do echo " ${pers}"; done echo "Files in system personality:" for file in `cat "${P_FILES}"`; do echo " ${file}" done } ############################################################################## # pers_init # # Initialise the personality collection; refuse to do so if there is # already one in place, or something else occupying the root path. # pers_init() { if [ -e "${P_ROOT}" ]; then fail "cannot initialise, '${P_ROOT}' already exists" fi # Create the repository with no files, and no current personality mkdir -p "${P_ROOT}" mkdir -p "${P_BASE}" } ############################################################################## # pers_reindex # # Clean out any empty directories in the repository. This is achieved # by silently trying to rmdir everything that looks like a directory # under any personality. # # Then rebuild the list of files that comprise the system personality, # so that the select and menu functions work. # pers_reindex() { # Remove empty directories for cand in ${P_ROOT}/_*; do find -dX "${cand}/." -type d | xargs rmdir >/dev/null 2>&1 done # Regenerate the files list find -X "${P_BASE}" -type f | sed "s%${P_BASE}%%" > "${P_FILES}" # regenerate the personalities list ls -d "${P_ROOT}/_"* | sed "s%${P_ROOT}/_%%" > "${P_LIST}" } ############################################################################## # usage # # Emit a (hopefully) helpful diagnostic and exit # usage() { echo "${scriptname}: incorrect argument(s)" echo "" echo " Usage is ${scriptname} , where valid commands are :" echo " menu [] Invoke the menu-driven personality selector" echo " select Select a specific personality" echo " restore Restore the current personality from the saved version" echo " save Save the current personality" echo " saveas Save the current personality under a new name" echo " create Create a new personality from the base" echo " delete Delete a personality" echo " add Add a new file" echo " remove Remove a file" echo " list List all files" echo " init Initialise the Personality System" echo "" exit 2; } ############################################################################## # fail # # Emit an error message to stderr and exit # fail () { echo "${scriptname}: $1"; exit 1; } ############################################################################## # Now we have parsed everything, start. pers_main $1 $2 $3 $4; exit 0; --==_Exmh_19463152480 Content-Type: text/plain; charset=us-ascii \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com --==_Exmh_19463152480-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 9: 9:10 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from storm.FreeBSD.org.uk (storm.freebsd.org.uk [194.242.128.198]) by hub.freebsd.org (Postfix) with ESMTP id 57D6714C59; Thu, 21 Oct 1999 09:08:57 -0700 (PDT) (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (picasso.transbay.net [209.133.53.6]) by storm.FreeBSD.org.uk (8.9.3/8.9.3) with ESMTP id RAA16178; Thu, 21 Oct 1999 17:08:56 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id JAA01630; Thu, 21 Oct 1999 09:11:00 -0700 (MST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <199910211611.JAA01630@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.0 09/18/1999 To: J McKitrick Cc: freebsd-questions@FreeBSD.ORG, mobile , brian@hak.lan.Awfulhak.org Subject: Re: ISP connection dropped In-Reply-To: Message from J McKitrick of "Thu, 21 Oct 1999 12:20:51 +0100." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 21 Oct 1999 09:10:59 -0700 From: Brian Somers Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org And what does your log say ? > I'm using a Toshiba Laptop with a Noteworthy 56k PCMCIA modem. I've been > using these 2 ISPs for some time now in windows and Linux. But since I > have switched to FBSD, these same ISPs drop the connection every 2-15 > minutes. I have no warning... suddenly DNS quits, then the carrier is > gone. I have tried different combinations of modem options to drop X2 and > 56K support, but nothing seems to work. Only FBSD does this, and it > doesn't matter whether i use ppp or KPPP. Does anyone have any ideas? > > p.s. I emailed my ISPs, asking them to check my log files. They said > they had no clue, I should call the modem manufacturer. > > -jm -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 9:11:15 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id B1F1D14C59; Thu, 21 Oct 1999 09:11:09 -0700 (PDT) (envelope-from jcm@dogma.freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 1.92 #3) id 11eKo0-000O98-00; Thu, 21 Oct 1999 17:11:08 +0100 Received: from localhost (jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) with SMTP id RAA30972; Thu, 21 Oct 1999 17:11:07 +0100 (BST) (envelope-from jcm@dogma.freebsd-uk.eu.org) Date: Thu, 21 Oct 1999 17:11:07 +0100 (BST) From: J McKitrick To: Brian Somers Cc: freebsd-questions@FreeBSD.ORG, mobile , brian@hak.lan.awfulhak.org Subject: Re: ISP connection dropped In-Reply-To: <199910211611.JAA01630@hak.lan.Awfulhak.org> 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 It says: Carrier Dropped -jm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 9:52:14 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id B8D2E14F2C for ; Thu, 21 Oct 1999 09:52:04 -0700 (PDT) (envelope-from adam@algroup.co.uk) Received: from algroup.co.uk ([193.195.56.225]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id QAA07364; Thu, 21 Oct 1999 16:49:09 GMT Message-ID: <380F4405.4ABC45@algroup.co.uk> Date: Thu, 21 Oct 1999 17:49:09 +0100 From: Adam Laurie Organization: A.L. Group plc X-Mailer: Mozilla 4.07 [en] (Win95; I) MIME-Version: 1.0 To: Andreas Klemm Cc: J McKitrick , "Daniel O'Connor" , mobile@FreeBSD.ORG Subject: Re: pccardd initializes interf. too late (arpwatch port exits earlier...) References: <380EC97F.B86F642B@algroup.co.uk> <19991021172532.A33862@titan.klemm.gtn.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andreas Klemm wrote: > > BTW, I got it managed now to configure rc.conf right for my > Xircon PCMCIA card. But ports like arpwatch startup earlier > and exit, because they can't find an ethernet device early > enough. > > What possibilities do I have, to give pccardd to initialize > the xe0 interface first and then starting network things ... You might want to check out the PAO stuff before you go any further - I'm not sure if it addresses this particular issue, but the scripts are different from the standard distribtion. http://www.jp.FreeBSD.org/PAO/ cheers, Adam -- Adam Laurie Tel: +44 (181) 742 0755 A.L. Digital Ltd. Fax: +44 (181) 742 5995 Voysey House Barley Mow Passage http://www.aldigital.co.uk London W4 4GB mailto:adam@algroup.co.uk UNITED KINGDOM PGP key on keyservers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 9:57: 7 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id 823B214F58 for ; Thu, 21 Oct 1999 09:56:54 -0700 (PDT) (envelope-from jcm@dogma.freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 1.92 #3) id 11eLWH-000O13-00; Thu, 21 Oct 1999 17:56:53 +0100 Received: from localhost (jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) with SMTP id RAA31269; Thu, 21 Oct 1999 17:56:52 +0100 (BST) (envelope-from jcm@dogma.freebsd-uk.eu.org) Date: Thu, 21 Oct 1999 17:56:52 +0100 (BST) From: J McKitrick To: Adam Laurie Cc: Andreas Klemm , "Daniel O'Connor" , mobile@FreeBSD.ORG Subject: Re: pccardd initializes interf. too late (arpwatch port exits earlier...) In-Reply-To: <380F4405.4ABC45@algroup.co.uk> 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 had a pretty much working 3.2 and i tried installing PAO. Suddenly, my modem wasn't in the same place, and wouldn't respond once i addressed it correctly. Things got really ugly. Being a newbie with no idea how to backtrack, i ended up doing a complete re-install. I'm sure they have some good ideas to make mobile machines work better, but i've been spooked now, and i don't want to break a running (thought less than optimal) machine to try to tweak a few little details. Unfortunately, i am still having problems with dropped connections. If i thought PAO might resolve THAT problem, i could be tempted to try it again. -jm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 10:37:30 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from storm.FreeBSD.org.uk (storm.freebsd.org.uk [194.242.128.198]) by hub.freebsd.org (Postfix) with ESMTP id B64FE14D31; Thu, 21 Oct 1999 10:37:26 -0700 (PDT) (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (picasso.transbay.net [209.133.53.6]) by storm.FreeBSD.org.uk (8.9.3/8.9.3) with ESMTP id SAA16611; Thu, 21 Oct 1999 18:37:24 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id KAA32817; Thu, 21 Oct 1999 10:39:28 -0700 (MST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <199910211739.KAA32817@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.0 09/18/1999 To: J McKitrick Cc: Brian Somers , freebsd-questions@FreeBSD.ORG, mobile , brian@hak.lan.Awfulhak.org, brian@hak.lan.Awfulhak.org Subject: Re: ISP connection dropped In-Reply-To: Message from J McKitrick of "Thu, 21 Oct 1999 17:11:07 BST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 21 Oct 1999 10:39:28 -0700 From: Brian Somers Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > It says: > > Carrier Dropped ? I can't find such a diagnostic in the source. I was hoping you'd perhaps post the relevant part of your log. > -jm -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 11: 4: 7 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id 7C9CB14F72; Thu, 21 Oct 1999 11:03:55 -0700 (PDT) (envelope-from jcm@dogma.freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 1.92 #3) id 11eMZ5-0000FT-00; Thu, 21 Oct 1999 19:03:51 +0100 Received: from localhost (jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) with SMTP id TAA31727; Thu, 21 Oct 1999 19:03:50 +0100 (BST) (envelope-from jcm@dogma.freebsd-uk.eu.org) Date: Thu, 21 Oct 1999 19:03:50 +0100 (BST) From: J McKitrick To: Brian Somers Cc: freebsd-questions@FreeBSD.ORG, mobile , brian@hak.lan.awfulhak.org, brian@hak.lan.awfulhak.org Subject: Re: ISP connection dropped In-Reply-To: <199910211739.KAA32817@hak.lan.Awfulhak.org> 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 OK, i'll do that. I expect to lose my connection any minute now ;-) -jm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 11: 4:47 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id 7F72114F6D; Thu, 21 Oct 1999 11:04:31 -0700 (PDT) (envelope-from jcm@dogma.freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 1.92 #3) id 11eMZh-0002nd-00; Thu, 21 Oct 1999 19:04:29 +0100 Received: from localhost (jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) with SMTP id TAA31735; Thu, 21 Oct 1999 19:04:29 +0100 (BST) (envelope-from jcm@dogma.freebsd-uk.eu.org) Date: Thu, 21 Oct 1999 19:04:29 +0100 (BST) From: J McKitrick To: Brian Somers Cc: freebsd-questions@FreeBSD.ORG, mobile , brian@hak.lan.awfulhak.org, brian@hak.lan.awfulhak.org Subject: Re: ISP connection dropped In-Reply-To: <199910211739.KAA32817@hak.lan.Awfulhak.org> 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 You want the applicable messages from /var/log/messages about pppd, right? -jm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 11:22:24 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from storm.FreeBSD.org.uk (storm.freebsd.org.uk [194.242.128.198]) by hub.freebsd.org (Postfix) with ESMTP id E36C914F7E; Thu, 21 Oct 1999 11:22:20 -0700 (PDT) (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (picasso.transbay.net [209.133.53.6]) by storm.FreeBSD.org.uk (8.9.3/8.9.3) with ESMTP id TAA17015; Thu, 21 Oct 1999 19:22:17 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id LAA33775; Thu, 21 Oct 1999 11:24:20 -0700 (MST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <199910211824.LAA33775@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.0 09/18/1999 To: J McKitrick Cc: Brian Somers , freebsd-questions@FreeBSD.ORG, mobile , brian@hak.lan.Awfulhak.org, brian@hak.lan.Awfulhak.org Subject: Re: ISP connection dropped In-Reply-To: Message from J McKitrick of "Thu, 21 Oct 1999 19:04:29 BST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 21 Oct 1999 11:24:20 -0700 From: Brian Somers Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > You want the applicable messages from /var/log/messages about pppd, right? You said you'd tried ppp. Can you get the applicable bits of /var/log/ppp.log ? > -jm -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 11:26:19 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id AADF514CB0; Thu, 21 Oct 1999 11:26:11 -0700 (PDT) (envelope-from jcm@dogma.freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 1.92 #3) id 11eMug-0000oc-00; Thu, 21 Oct 1999 19:26:10 +0100 Received: from localhost (jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) with SMTP id TAA31932; Thu, 21 Oct 1999 19:26:09 +0100 (BST) (envelope-from jcm@dogma.freebsd-uk.eu.org) Date: Thu, 21 Oct 1999 19:26:09 +0100 (BST) From: J McKitrick To: Brian Somers Cc: freebsd-questions@freebsd.org, mobile , brian@hak.lan.Awfulhak.org, brian@hak.lan.Awfulhak.org Subject: Re: ISP connection dropped In-Reply-To: <199910211824.LAA33775@hak.lan.Awfulhak.org> 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 Is there an easy way to cut and paste from xterm into pine email? -jm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 14:36:14 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from picalon.gun.de (picalon.gun.de [192.109.159.1]) by hub.freebsd.org (Postfix) with ESMTP id 89F9C14FD1 for ; Thu, 21 Oct 1999 14:36:07 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: from klemm.gtn.com (pppak04.gtn.com [194.231.123.169]) by picalon.gun.de (8.9.3/8.9.3) with ESMTP id XAA04655; Thu, 21 Oct 1999 23:36:02 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.9.3/8.9.3) id XAA45207; Thu, 21 Oct 1999 23:35:54 +0200 (CEST) (envelope-from andreas) Date: Thu, 21 Oct 1999 23:35:54 +0200 From: Andreas Klemm To: Adam Laurie Cc: J McKitrick , "Daniel O'Connor" , Andreas Klemm , mobile@FreeBSD.ORG Subject: Re: profile manager for FreeBSD working in different environment Message-ID: <19991021233554.A45178@titan.klemm.gtn.com> References: <380F0865.99924F2B@algroup.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre1i In-Reply-To: <380F0865.99924F2B@algroup.co.uk> X-Operating-System: FreeBSD 3.3-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 21, 1999 at 01:34:45PM +0100, Adam Laurie wrote: > OK - I'll dig 'em out over the weekend - haven't got my laptop with me > at the moment... I got something nicely working from Mike (Smith). Runs very well ! Andreas /// -- Andreas Klemm http://www.FreeBSD.ORG/~andreas http://www.freebsd.org/~fsmp/SMP/SMP.html powered by Symmetric MultiProcessor FreeBSD Get new songs from our band: http://www.freebsd.org/~andreas/64bits/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 14:49: 7 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by hub.freebsd.org (Postfix) with ESMTP id 67A9D14A21 for ; Thu, 21 Oct 1999 14:49:05 -0700 (PDT) (envelope-from worsco@mindspring.com) Received: from mindspring.com (user-38ldjnm.dialup.mindspring.com [209.86.206.246]) by smtp6.mindspring.com (8.8.5/8.8.5) with ESMTP id RAA25253 for ; Thu, 21 Oct 1999 17:49:03 -0400 (EDT) Message-ID: <380F895A.AB45F577@mindspring.com> Date: Thu, 21 Oct 1999 14:44:58 -0700 From: Scott Worthington X-Mailer: Mozilla 4.61 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-mobile@freebsd.org Subject: Adaptec 1460C and 3.3-STABLE support yet? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Oh boo. I just realized that support for the Adaptec 1460C for FreeBSD 3.3-STABLE does not exist yet. To whom do we send the pizza and beers to CAMify the aic0 driver? It would be nice to have SCSI support on my laptop again. And I know others would like it too. Anyone? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 15:23:25 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from foobar.franken.de (foobar.franken.de [194.94.249.81]) by hub.freebsd.org (Postfix) with ESMTP id 0AE3B14CB0 for ; Thu, 21 Oct 1999 15:23:18 -0700 (PDT) (envelope-from logix@foobar.franken.de) Received: (from logix@localhost) by foobar.franken.de (8.8.8/8.8.5) id AAA25629; Fri, 22 Oct 1999 00:23:09 +0200 (CEST) Message-ID: <19991022002308.F25185@foobar.franken.de> Date: Fri, 22 Oct 1999 00:23:08 +0200 From: Harold Gutch To: Scott Worthington , freebsd-mobile@FreeBSD.ORG Subject: Re: Adaptec 1460C and 3.3-STABLE support yet? References: <380F895A.AB45F577@mindspring.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <380F895A.AB45F577@mindspring.com>; from Scott Worthington on Thu, Oct 21, 1999 at 02:44:58PM -0700 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 21, 1999 at 02:44:58PM -0700, Scott Worthington wrote: > Oh boo. I just realized that support for the Adaptec 1460C for > FreeBSD 3.3-STABLE does not exist yet. > > To whom do we send the pizza and beers to CAMify the aic0 driver? > Luoqi Chen CAMified aic just a few days ago, he only announced it on -current although there already is a backport to -STABLE. > It would be nice to have SCSI support on my laptop again. And I > know others would like it too. > Try http://www.freebsd.org/~luoqi/aic/stable/ bye, Harold -- Sleep is an abstinence syndrome wich occurs due to lack of caffein. Wed Mar 4 04:53:33 CET 1998 #unix, ircnet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 19:10:15 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from cheddar.netmonger.net (cheddar.netmonger.net [209.54.21.140]) by hub.freebsd.org (Postfix) with ESMTP id 190F814A21 for ; Thu, 21 Oct 1999 19:10:13 -0700 (PDT) (envelope-from chris@cheddar.netmonger.net) Received: (from chris@localhost) by cheddar.netmonger.net (8.8.8/8.8.8) id WAA24973; Thu, 21 Oct 1999 22:10:12 -0400 (EDT) Message-ID: <19991021221012.A24845@netmonger.net> Date: Thu, 21 Oct 1999 22:10:12 -0400 From: Christopher Masto To: Andreas Klemm , mobile@FreeBSD.ORG Subject: Re: profile manager for FreeBSD working in different environments ? References: <19991021075803.A14781@titan.klemm.gtn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <19991021075803.A14781@titan.klemm.gtn.com>; from Andreas Klemm on Thu, Oct 21, 1999 at 07:58:03AM +0200 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 21, 1999 at 07:58:03AM +0200, Andreas Klemm wrote: > Hi ! > > When running FreeBSD on a Laptop, I'd whish to have a profile > manager active, who asks me, what FreeBSD configuration I want > to boot. You really want to REBOOT because you've taken your laptop from one place to another? Gaah. -- Christopher Masto Senior Network Monkey NetMonger Communications chris@netmonger.net info@netmonger.net http://www.netmonger.net Free yourself, free your machine, free the daemon -- http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 21 19:13:17 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id A359514D69 for ; Thu, 21 Oct 1999 19:13:12 -0700 (PDT) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id LAA05462; Fri, 22 Oct 1999 11:43:00 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.3.1 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <19991021221012.A24845@netmonger.net> Date: Fri, 22 Oct 1999 11:43:00 +0930 (CST) From: "Daniel O'Connor" To: Christopher Masto Subject: Re: profile manager for FreeBSD working in different environment Cc: mobile@FreeBSD.ORG, Andreas Klemm Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 22-Oct-99 Christopher Masto wrote: > > When running FreeBSD on a Laptop, I'd whish to have a profile > > manager active, who asks me, what FreeBSD configuration I want > > to boot. > You really want to REBOOT because you've taken your laptop from one > place to another? Gaah. Its simpler than teaching it how /etc/rc works, and telling it how to restart all the daemons that bind to different addresses. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 22 6: 3:13 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id BE18C14CCB for ; Fri, 22 Oct 1999 06:02:50 -0700 (PDT) (envelope-from adam@algroup.co.uk) Received: from algroup.co.uk ([192.168.192.2]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id MAA01405; Fri, 22 Oct 1999 12:59:27 GMT Message-ID: <38105FB2.FE083BCB@algroup.co.uk> Date: Fri, 22 Oct 1999 13:59:30 +0100 From: Adam Laurie X-Mailer: Mozilla 4.7 [en-gb] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: Andreas Klemm Cc: J McKitrick , "Daniel O'Connor" , mobile@FreeBSD.ORG Subject: Re: profile manager for FreeBSD working in different environment References: <380F0865.99924F2B@algroup.co.uk> <19991021233554.A45178@titan.klemm.gtn.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andreas Klemm wrote: > > On Thu, Oct 21, 1999 at 01:34:45PM +0100, Adam Laurie wrote: > > OK - I'll dig 'em out over the weekend - haven't got my laptop with me > > at the moment... > > I got something nicely working from Mike (Smith). > Runs very well ! Yeah, I saw it. The difference with my stuff is it only controls the network related bits and runs when you insert the card, so no rebboot required. On the fly changes just require a remove/re-insert of network card. BTW, why isn't personality distributed with FreeBSD if it's been around since 97? cheers, Adam -- Adam Laurie Tel: +44 (181) 742 0755 A.L. Digital Ltd. Fax: +44 (181) 742 5995 Voysey House Barley Mow Passage http://www.aldigital.co.uk London W4 4GB mailto:adam@algroup.co.uk UNITED KINGDOM PGP key on keyservers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 22 6:31:15 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from guineapig.cnbinc.com (martin2.lnk.telstra.net [139.130.137.91]) by hub.freebsd.org (Postfix) with ESMTP id 8F3C914E67 for ; Fri, 22 Oct 1999 06:31:07 -0700 (PDT) (envelope-from diskiller@cnbinc.com) Received: from localhost (diskiller@localhost) by guineapig.cnbinc.com (8.9.3/8.9.2) with ESMTP id WAA01810; Fri, 22 Oct 1999 22:59:19 +0930 (CST) (envelope-from diskiller@cnbinc.com) X-Authentication-Warning: guineapig.cnbinc.com: diskiller owned process doing -bs Date: Fri, 22 Oct 1999 22:59:19 +0930 (CST) From: Martin Minkus To: J McKitrick Cc: freebsd-mobile@freebsd.org Subject: Re: ISP connection dropped 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 Fri, 22 Oct 1999, J McKitrick wrote: > Well, i don't have the log file here at work, but if i remember, both ppp > and pppd (depending what i was using) were both connected and doing > fine... > > Then ppp says: > Disconnected ! > connected for x minutes > > pppd (when using kppp) says: > Modem hangup > connected for X minutes > > Last night i was online for almost an hour... sometimes the connection > dies after 3 minutes. Either way, average is about 15 minutes. I just > don't get why this doesn't happen with windows. I tried a direct line (no > answering machine or extensions in the way). I also tried 2 different > ISPs. I tried disabling X2 and 56K. But there is simply no rhyme or > reason. Maybe just a conspiracy to keep non-windows laptops off the > web... ;-) maybe? :) I must say its perplexing ... (i've always used windows and Linux and never had a problem) and first day i used FreeBSD (with no experience) i got the kernel pppd driver going without a hitch. I now maintain a permenant 24hr PPP connection using the ppp userspace driver, and have no problems, ever. Anyway, i'm not really an expert (i certainly have no experience with the ppp drivers, or their code), i was merely anwsering how to copy/paste from the xterm :) But anyway, i'll have a go at it :) Hrms ... perhaps your ISP is using a slightly 'broken' ppp protocol, or something a little non-standard that maybe FBSD doesn't like ? i don't know. The kernel pppd driver is identical in FBSD and Linux i believe (same manual page even!) so there is something strange there. Perhaps its not a PPP problem, but a serial port problem .... that is, your serial port might not be configured correctly under FBSD causing this. (is the modem internal, external, etc?) Have you got the right IRQ and port? Sometimes a problem is simpler then you think. PPP may have nothing to do with it. D. Martin Minkus aka DiSKiLLeR - www.diskiller.net Ph: +61 8 82420187 Email: diskiller@cnbinc.com ------------------------------------------------------- The more we disagree, the more chance there is that at least one of us is right. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 22 7:49:34 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from sicily.odyssey.cs.cmu.edu (SICILY.ODYSSEY.CS.CMU.EDU [128.2.185.138]) by hub.freebsd.org (Postfix) with SMTP id A5BF114C34 for ; Fri, 22 Oct 1999 07:49:26 -0700 (PDT) (envelope-from rvb+@sicily.odyssey.cs.cmu.edu) To: Steve O'Hara-Smith Cc: Andreas Klemm , mobile@FreeBSD.ORG, Daniel O'Connor , Adam Laurie , J McKitrick Subject: Re: pccardd initializes interf. too late (arpwatch port exits ea References: <+cmu.andrew.internet.computing.freebsd.mobile+gs3n8Gi00UfA011zg0@andrew.cmu.edu> From: "Robert V. Baron" Date: 22 Oct 1999 10:48:08 -0400 In-Reply-To: "Steve O'Hara-Smith"'s message of "Thu, 21 Oct 1999 16:29:52 +0100 (IST)" Message-ID: Lines: 25 X-Mailer: Gnus v5.5/Emacs 20.3 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Steve O'Hara-Smith"@iol writes: > On 21-Oct-99 Andreas Klemm wrote: > > BTW, I got it managed now to configure rc.conf right for my > > Xircon PCMCIA card. But ports like arpwatch startup earlier > > and exit, because they can't find an ethernet device early > > enough. > > > > What possibilities do I have, to give pccardd to initialize > > the xe0 interface first and then starting network things ... > > Modify the insert and/or remove scripts mentioned in pccard.conf, > preferably by making new ones and changing pccard.conf to use the new ones. I find that this works fine for things like running wicontrol to initialize your wavelan after its is detected. On the otherhand, I have trouble with the normal system network deamons. So I add a sleep 15 to /etc/rc.pccard after it starts pccardd. > > > > 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 Fri Oct 22 7:54:34 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id 0809014C34 for ; Fri, 22 Oct 1999 07:54:19 -0700 (PDT) (envelope-from jcm@dogma.freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 1.92 #3) id 11eg5A-000PF8-00; Fri, 22 Oct 1999 15:54:16 +0100 Received: from localhost (jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) with SMTP id PAA38420; Fri, 22 Oct 1999 15:54:15 +0100 (BST) (envelope-from jcm@dogma.freebsd-uk.eu.org) Date: Fri, 22 Oct 1999 15:54:15 +0100 (BST) From: J McKitrick To: "Robert V. Baron" Cc: "Steve O'Hara-Smith" , Andreas Klemm , mobile@FreeBSD.ORG, "Daniel O'Connor" , Adam Laurie Subject: Re: pccardd initializes interf. too late (arpwatch port exits ea 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 I just saw something that might help me. WHen my laptop boots, i get a message that pccardd recognizes my card right in the middle of my login prompt. It doesn't interfere with KB input, but it's annoying and messy. Does the sleep mean i can tell pccard to wake up several seconds after i have logged in? Or is there a way i can start it earlier so it finishes its duites before the login prompt? -jm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 22 7:56:45 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from picalon.gun.de (picalon.gun.de [192.109.159.1]) by hub.freebsd.org (Postfix) with ESMTP id 2573014C34 for ; Fri, 22 Oct 1999 07:56:32 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: from klemm.gtn.com (pppak04.gtn.com [194.231.123.169]) by picalon.gun.de (8.9.3/8.9.3) with ESMTP id QAA07366; Fri, 22 Oct 1999 16:56:14 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.9.3/8.9.3) id QAA72531; Fri, 22 Oct 1999 16:47:41 +0200 (CEST) (envelope-from andreas) Date: Fri, 22 Oct 1999 16:47:40 +0200 From: Andreas Klemm To: Adam Laurie Cc: Andreas Klemm , J McKitrick , "Daniel O'Connor" , mobile@FreeBSD.ORG, Mike Smith Subject: Re: profile manager for FreeBSD working in different environment Message-ID: <19991022164740.B72261@titan.klemm.gtn.com> References: <380F0865.99924F2B@algroup.co.uk> <19991021233554.A45178@titan.klemm.gtn.com> <38105FB2.FE083BCB@algroup.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre1i In-Reply-To: <38105FB2.FE083BCB@algroup.co.uk> X-Operating-System: FreeBSD 3.3-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 22, 1999 at 01:59:30PM +0100, Adam Laurie wrote: [ personality ] > Yeah, I saw it. The difference with my stuff is it only controls the > network related bits and runs when you insert the card, so no rebboot > required. On the fly changes just require a remove/re-insert of network > card. BTW, why isn't personality distributed with FreeBSD if it's been > around since 97? Don't know, Cc'd to Mike... -- Andreas Klemm http://www.FreeBSD.ORG/~andreas http://www.freebsd.org/~fsmp/SMP/SMP.html powered by Symmetric MultiProcessor FreeBSD Get new songs from our band: http://www.freebsd.org/~andreas/64bits/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 22 8: 1:32 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from sicily.odyssey.cs.cmu.edu (SICILY.ODYSSEY.CS.CMU.EDU [128.2.185.138]) by hub.freebsd.org (Postfix) with SMTP id E86EB150C9; Fri, 22 Oct 1999 08:01:17 -0700 (PDT) (envelope-from rvb+@sicily.odyssey.cs.cmu.edu) To: mobile@freebsd.org, current@freebsd.org Subject: /etc/pccard_ether "improvement" From: "Robert V. Baron" Date: 22 Oct 1999 11:00:31 -0400 Message-ID: Lines: 26 X-Mailer: Gnus v5.5/Emacs 20.3 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm going to be using either a wavelanII (wi0) or a 3com (ep0) on my laptop. I'd like to have the rc.conf's specify how to configure each. Then I'd like to have the one that is in the machine to be configured. In the current /etc/ether_pccard there is $pccard_ifconfig which is used as args to ifconfig if $pccard_ifconfig is not NO. But I need a different ifconfig for each device. So I'd like to propose fixing pccard_ether as: --- /etc/pccard_ether.BAK Mon Oct 4 10:38:32 1999 +++ /etc/pccard_ether Mon Oct 4 11:09:18 1999 @@ -35,7 +35,14 @@ else interface=$1 shift - ifconfig $interface $pccard_ifconfig $* + if [ "x$pccard_ifconfig" = "xYES" ] ; then + eval ifconfig_args=\$ifconfig_${interface} + if [ -n "${ifconfig_args}" ] ; then + ifconfig ${interface} ${ifconfig_args} $* + fi + else + ifconfig $interface $pccard_ifconfig $* + fi fi fi This way pccard devices are initialized just like other devices To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 22 9:24:54 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from sicily.odyssey.cs.cmu.edu (SICILY.ODYSSEY.CS.CMU.EDU [128.2.185.138]) by hub.freebsd.org (Postfix) with SMTP id 63AE314C34 for ; Fri, 22 Oct 1999 09:24:25 -0700 (PDT) (envelope-from rvb+@sicily.odyssey.cs.cmu.edu) To: J McKitrick Cc: Steve O'Hara-Smith , Andreas Klemm , mobile@FreeBSD.ORG, Daniel O'Connor , Adam Laurie Subject: Re: pccardd initializes interf. too late (arpwatch port exits ea References: From: "Robert V. Baron" Date: 22 Oct 1999 12:23:10 -0400 In-Reply-To: J McKitrick's message of "Fri, 22 Oct 1999 15:54:15 +0100 (BST)" Message-ID: Lines: 14 X-Mailer: Gnus v5.5/Emacs 20.3 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org J McKitrick writes: > I just saw something that might help me. WHen my laptop boots, i get a > message that pccardd recognizes my card right in the middle of my login > prompt. It doesn't interfere with KB input, but it's annoying and messy. > Does the sleep mean i can tell pccard to wake up several seconds after i > have logged in? Or is there a way i can start it earlier so it finishes > its duites before the login prompt? What the sleep does is almost the opposite. It delays the entire boot process for 15 seconds after pccardd is started. This means that pccardd has enough time to do its thing and find the devices. So the system behaves more like the pcmcia devices were found during the system device probe. > > -jm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 22 9:41:23 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from axp5.physik.fu-berlin.de (axp5.physik.fu-berlin.de [160.45.34.3]) by hub.freebsd.org (Postfix) with ESMTP id 0EF4F15004 for ; Fri, 22 Oct 1999 09:41:15 -0700 (PDT) (envelope-from thimm@oberon.physik.fu-berlin.de) Received: from oberon.physik.fu-berlin.de (oberon.physik.fu-berlin.de [160.45.33.83]) by axp5.physik.fu-berlin.de (8.9.1a/8.9.1) with ESMTP id SAA30708; Fri, 22 Oct 1999 18:41:08 +0200 (MET DST) Received: (from thimm@localhost) by oberon.physik.fu-berlin.de (8.9.1a/8.9.1) id SAA23888; Fri, 22 Oct 1999 18:41:08 +0200 (MET DST) Message-ID: <19991022184107.A23559@physik.fu-berlin.de> Date: Fri, 22 Oct 1999 18:41:07 +0200 From: Axel Thimm To: freebsd-mobile@freebsd.org Subject: Acer TravelMate 51xT series supported? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have an Acer TravelMate 513T (probably compatible to 510T and 512T besides memory and processor). Unfortunately I cannot have FreeBSD recognize the card controller. I had tried with vanilla 3.2, 3.2+PAO for 3.2, 3.2+PAO+switching on experimental stuff without success. Now I tried the PAO for 3.3 boot discs and still have no success. Has anyone successfully run his Acer TravelMate 51xT with FreeBSD? Any clues? Thanks, Axel. -- Axel.Thimm@physik.fu-berlin.de Axel.Thimm@ifh.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 22 10: 7: 8 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id B552415046 for ; Fri, 22 Oct 1999 10:06:33 -0700 (PDT) (envelope-from jcm@dogma.freebsd-uk.eu.org) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 1.92 #3) id 11ei98-000Lbe-00; Fri, 22 Oct 1999 18:06:30 +0100 Received: from localhost (jcm@localhost) by dogma.freebsd-uk.eu.org (8.9.3/8.9.3) with SMTP id SAA39286; Fri, 22 Oct 1999 18:06:29 +0100 (BST) (envelope-from jcm@dogma.freebsd-uk.eu.org) Date: Fri, 22 Oct 1999 18:06:29 +0100 (BST) From: J McKitrick To: Martin Dieringer Cc: "Robert V. Baron" , "Steve O'Hara-Smith" , Andreas Klemm , mobile@FreeBSD.ORG, "Daniel O'Connor" , Adam Laurie Subject: Re: pccardd initializes interf. too late 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 So you just change the source code for pccardd instead of the scripts? And you've never had a problem recognizing the card? I have a P266, so i don't think speed is a problem, but that may make more sense. And there is just a simple makefile for recompiling and reinstalling, right? -jm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 22 10:31:46 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 9FEFA15045 for ; Fri, 22 Oct 1999 10:31:42 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p05-dn01kiryunisiki.gunma.ocn.ne.jp [210.132.6.134]) by peach.ocn.ne.jp (8.9.1a/OCN) with ESMTP id CAA22479; Sat, 23 Oct 1999 02:31:38 +0900 (JST) Message-ID: <38109C6F.A47D7CD@newsguy.com> Date: Sat, 23 Oct 1999 02:18:39 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: Scott Worthington Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Adaptec 1460C and 3.3-STABLE support yet? References: <380F895A.AB45F577@mindspring.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Scott Worthington wrote: > > Oh boo. I just realized that support for the Adaptec 1460C for > FreeBSD 3.3-STABLE does not exist yet. > > To whom do we send the pizza and beers to CAMify the aic0 driver? > > It would be nice to have SCSI support on my laptop again. And I > know others would like it too. > > Anyone? Boy, are you lucky... :-) Not having SCSI on my laptop has been a source of major frustration for me for quite a while (not enough frustration to get me to actually learn how to write a SCSI device driver, though :). Alas, Luoqi just CAMified aic. It should be showing up on the -stable tree soon. Remember, though, that the aic driver is known to be buggy. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org "People call him Neutron Star, 'cuz he's so dense lights bends around him." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 22 16:23:10 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from kfm.co.kr (http.co.kr [210.113.78.163]) by hub.freebsd.org (Postfix) with SMTP id 1832614D47 for ; Fri, 22 Oct 1999 16:23:03 -0700 (PDT) (envelope-from aigoo@hotmail.com) Received: from [210.205.170.134] by kfm.co.kr (SMTPD32-3.04) id A32A14E0230; Sat, 23 Oct 1999 08:28:42 +0900 From: È«¼ºÇö To: freebsd-mobile@freebsd.org Cc: Subject: freebsd-mobile´Ô ¾È³çÇϼ¼¿ä... Date: Sat, 23 Oct 99 08:21:25 ´ëÇѹα¹ Ç¥Áؽà MIME-Version: 1.0 Content-Type: multipart/mixed; boundary=AD_2000_PART_BOUNDARY_19990606 Message-Id: <19991022232305.1832614D47@hub.freebsd.org> Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --AD_2000_PART_BOUNDARY_19990606 Content-Type: text/plain Content-Transfer-Encoding: 7Bit freebsd-mobile´Ô ¾È³çÇϼ¼¿ä... http://www.jp.freebsd.org/PAO/ÀÇ È¨ÆäÀÌÁö¿¡ µé·¶´Ù°¡ freebsd-mobile@freebsd.org´ÔÀ» º¸°í Ȥ½Ã³ªÇؼ­ ¸ÞÀÏÀ» µå·Áº¾´Ï´Ù. ¾ÆÁÖ ¹«½ÄÇÑ ½ºÆÔ¸ÞÀÏÀº ¾Æ´Ï´Ï±î ¾çÇظ¦ ¹Ù¶ó±¸¿ä. ¿øÄ¡ ¾ÊÀ¸½Ã¸é ¸ÞÀÏÀ» º¸³»µå¸®Áö ¾Ê°Ú½À´Ï´Ù. Á» ºÒÆí ÇϽôõ¶óµµ °ÅºÎÀÇ»ç ¸ÞÀÏÀ» º¸³»Áֽøé Àý´ë·Î ±ÍÂú°Ô Çص帮Áö ¾Ê°Ú½À´Ï´Ù... Á˼ÛÇÕ´Ï´Ù, ±×·³ °Ç°­Çϼ¼¿ä... ------------------------------------------------------------------------ #######¹°!,¹°!,ÀÌÁ¨ ¹Ù·Î ¾Ë¾Æ¾ß ÇÕ´Ï´Ù.####### (¿©¼ººÐµéÀº ²À ³¡±îÁö Àо½Ã±æ ¹Ù¶ø´Ï´Ù.!!) *1.¹°¿¡´ëÇÑ ÀÚ·á¿Í ¾ð·Ðº¸µµ ³»¿ëÀÌ µÚ¿¡ ÷ºÎµÇ¾î ÀÖ½À´Ï´Ù. *2.¿¬¼ö±â¿¡ ´ëÇÑ ¼Ò°³°¡ µÇ¾îÀÖ½À´Ï´Ù.(¿©¼ººÐµéÀº Çʵ¶ÇϽñæ...) *3.¾÷¼Ò³ª ±â¾÷¿¡¼­ »ý¼ö¸¦ Á¤¼ö±â·Î ´ëüÇÏ½Ã¸é ºñ¿ëÀý°¨µµ ÇϽǼö ÀÖ½À´Ï´Ù. #¹®ÀÇ»çÇ×ÀÌ ÀÖÀ¸½ÅºÐÀº ÀüÈ­³ª ¸ÞÀÏÀ» Áֽøé Ä£ÀýÇÏ°í ÀÚ¼¼È÷ ¾Ë·Áµå¸®°Ú½À´Ï´Ù *ƯÈ÷, Áý¿¡ ¾î¸°¾Æ±â³ª ³ªÀÌ ¸¹À¸½Å ³ëÀκÐÀÌ °è½Å ºÐÀº Á» ¹ø°Å·Î¿ì½Ã´õ¶óµµ ÀڽŰú °¡Á·ÀÇ °Ç°­À» »ý°¢ ÇÏ½Å´Ù¸é ²À! ³¡±îÁö Àо½Ã±â ¹Ù¶ø´Ï´Ù. ------------------------------------------------------------------------ *[¿õÁøÄÚ¿þÀÌ ·»Å»(ÀÓ´ë) Á¤¼ö±â/¿¬¼ö±âÀÇ ¼±ÅÃÀÌÀ¯]* 1.10Àϵ¿¾È ¹«·á·Î ½áº¸½Ã°í ¸¶À½¿¡ ¾Èµå½Ã¸é ¾î¶°ÇÑ ºÒÀÌÀ;øÀÌ ¹Ù·Î ȸ¼ö 2.Àü±¹ ¾îµð¼­³ª ¼³Ä¡+Ưº°»çÀºÇ°(ÀÎÅÍ³Ý ´ã´çÀÚ¿¡ ÇÑÇÔ) 3.±¸ÀÔÀÌ ¾Æ´Ñ ºÎ´ã¾ø´Â ÀÓ´ë·Î »ç¿ë 4.2°³¿ù¸¶´Ù ¼øȸ¹æ¹® û¼Ò/Á¡°Ë/¹«»ó ÇÊÅͱ³È¯(±³È¯Áֱ⿡ µû¶ó) 5.ÃÖ÷´Ü ¿ª»ïÅõ¾Ð Á¤¼ö¹æ½Ä ä¿ë ¹× ±ñ±ñÇÑ 5´Ü°è Á¤¼ö½Ã½ºÅÛ -¿À¿°µÈ ¹°¿¡ ¾Ð·ÂÀ» °¡ÇÏ¿© Ư¼öÇÏ°Ô Á¦ÀÛµÈ ¹ÝÅõ¸·ÀÎ ¸âºê·¹ÀÎÀ» Åë°úÇÒ ¶§ Á߱ݼÓ, ¼¼±Õ, ¹ß¾Ï¹°Áú, ¹ÙÀÌ·¯½º , ȯ°æÈ£·Î¸ó, ´ÙÀÌ¿Á½Å ¹× ºÒ¼ø¹°Àº °É·¯ÁÖ°í, ¼ø¼öÇÑ ¹°°ú ¿ì¸® ¸ö¿¡ ÁÁÀº »ê¼Ò ¹× ¼Ò·®ÀÇ ¹Ì³×¶ö¸¸À» Åë°ú½ÃÄÑ ÁÖ´Â Á¤¼ö¹æ½Ä ÀÔ´Ï´Ù. ¸âºê·¹ÀÎ ±â°øÀº »ç¶÷ ¸Ó¸®Ä«¶ôÀÇ 100¸¸ºÐÀÇ 1ÀÇ Å©±â·Î½á ¾ÆÁÖ ¹Ì¼¼ÇÑ ¹ÙÀÌ·¯½ºµµ Åë°úÇÏÁö ¸øÇÕ´Ï´Ù. 6.°è¾àº¯µ¿,ÇØÁö½Ã º¸Áõ±Ý Àü¾×ȯºÒ, 7.¿¬1ȸ ¹«·á¼öÁú°Ë»ç 8.õÀçÁöº¯½Ã ºñ¿ëºÎ´ã¾øÀÌ Á¦Ç°±³È¯, 9.»õ·Î¿î ¸ðµ¨ Ãâ½Ã½Ã ¹«·á ±³È¯ 10.Àå±â »ç¿ë°í°´ ¿ù»ç¿ë·á ¿ì´ëÇýÅÃ-1³â¸¶´Ù 2õ¿ø¾¿ 3ȸÇÒÀÎ!! *11.Ưº°»çÀºÇ° - ¾Æ·¡¼Ò°³µÈ ·çÀ̺¸½ºÆ¼ 3Àΰ¡Á· 20ÀϺР¹«·áÁõÁ¤* ---------------------------------------------------------------- *[¿õÁøÄÚ¿þÀÌ ·»Å»Á¤¼ö±â/¿¬¼ö±â ÀÓ´ëÁ¶°Ç]* 1.·»Å»±â°£ : ÃÖ¼Ò 6°³¿ùºÎÅÍ °í°´ÀÌ ¿øÇÏ´Â ±â°£±îÁö 2.°è¾àº¯µ¿ : Çؾà½Ã º¸Áõ±Ý Àü¾×ȯºÒ 3.°è ¾à ±Ý : Á¤¼ö±â º¸Áõ±Ý 10¸¸¿ø(°ø°ø±â°ü/¿Ü±¹ÀÎȸ»ç ¸éÁ¦) ¿¬¼ö±â º¸Áõ±Ý 10¸¸¿ø->*¿õÁøÁ¦Ç° »ç¿ëÀÚ´Â ¸éÁ¦µÊ!! 4.¼³Ä¡¿î¿µºñ :Á¤¼ö±â 3¸¸¿ø/*4¸¸¿ø(³Ã¿ÂÁ¤¼ö±â):1ȸ¿¡ ÇÑÇÔ ¿¬¼ö±â 2¸¸¿ø 5.¿ù»ç¿ë·á: *Á¤¼ö±â 26000¿ø ºÎÅÍ ~(°¡Á¤¿ë/*ÀϹÝÁ¤¼ö±â ±âÁØ) *¿¬¼ö±â 18000¿ø-1³â¿¡ 3õ¿ø¾¿ 2ȸ ÇÒÀÎÇýÅÃ! 6.ÀÌÀü¼³Ä¡ºñ :Æò»ý¹«·á (ÁÖ)¿õÁøÄÚ¿þÀÌ °³¹ß ´ã´ç È«¼ºÇö µå¸².(¹ã12½Ã±îÁö »ó´ã°¡´É) ¿¬¶ôó : 744-0209(°³¹ß½Ç)/581-8855(°­³²º»»ç)/017-720-5925 µÇµµ·Ï À̸é Àú¿Í ÅëÈ­¸¦ ÇϽøé ÁÁ°Ú½À´Ï´Ù. ###°¡Á·°Ç°­¿¡ ¾ÆÁÖÁÁÀº ¾Æ·¡ ¼Ò°³µÈ ·çÀ̺¸½ºÆ¼¸¦ µå¸³´Ï´Ù.### --------------------------------------------------------------- *·»Å» ¿µ¾÷º»ºÎ »ç¿ø ¸ðÁý* (ÁÖ)¿õÁøÄÚ¿þÀÌ °³¹ß 1.¸ðÁýÀοø : 00¸í 2.¸ðÁýºÎ¼­ : Á¤¼ö±â ·»Å»(ÀÓ´ë)»ç¾÷ºÎ 3.ÀÀ½ÃÀÚ°Ý : ¸¸20¼¼ ÀÌ»ó(ÁÖºÎȯ¿µ) 4.±Þ ¿© : ±âº»±Þ + Àμ¾Æ¼ºê+º¸³Ê½º 5.Á¦Ãâ¼­·ù : À̷¼­ ÇÔ²² ÀÏÇÒ °¡Á·À» ã°íÀÖ½À´Ï´Ù. ---------------------------------------------------------------- *¹°¿¡ ´ëÇÑ À߸øµÈ »ý°¢ [ÀÚ·áÃâó-¿¬¼¼´ë ȯ°æ°øÇØ ¿¬±¸¼Ò] -¼öµµ¹°Àº ²ú¿© ¸¶½Ã¸é ¾ÈÀüÇÏ´Ù±¸¿ä? ¿©Å±îÁö ¿ì¸®°¡ °¡Àå ÈçÈ÷ ¸¶½Ã°í ÀÖ´Â °ÍÀÌ ¹Ù·Î ¼öµµ¹°·Î ²úÀÎ º¸¸® Â÷¿´½À´Ï´Ù. ±×·¯³ª ¹°Àº ²úÀÌ°Ô µÇ¸é »ê¼Ò°¡ Æı«µÇ°í, ¹°ºÐÀڿÀÌ Á¤ÁöµÇ¾î »ý¸í·ÂÀ» ÀҰԵ˴ϴÙ. ¶ÇÇÑ, º¸¸®Â÷´Â Æ®¸®ÇҷθÞź(THMs)À̶ó°í ÇÏ´Â À¯µ¶¼º ¹ß¾Ï¹°ÁúÀ» ±×´ë·Î ÇÔÀ¯ÇÏ°Ô µÇ°í, Áß±Ý¼Ó ¡¤ÇÕ¼º¼¼Á¦ ¡¤»ìÃæÁ¦ µîµµ ±Ùº»ÀûÀÎ Á¦°Å¸¦ ÇÒ ¼ö ¾ø´Ù´Â ½É°¢ÇÑ ¹®Á¦Á¡À» ¾È°í ÀÖ½À´Ï´Ù. -»ý¼ö³ª ¾à¼ö¸¦ ¸Ô°í ÀÖÀ¸´Ï±î °ÆÁ¤¾ø´Ù±¸¿ä? ´ë±â°¡ ¹æ»ç´É°ú °¢Á¾ À¯Çع°Áú·Î ¿À¿°µÇ°í, ÁöÇ¥ ¶ÇÇÑ Æó¼ö µîÀ¸·Î ÀÎÇØ ±× ¿À¿°ÀÌ ½É°¢ÇØÁø ÀÌ ¸¶´ç¿¡ »ý¼ö³ª ¾à¼öÀÎµé ¿ÂÀüÇÒ ¸®°¡ ÀÖÀ»±î¿ä? ½Å¹® Áö»ó¿¡¼­ÀÇ °¢Á¾ º¸µµ¸¦ º¸´õ¶óµµ »ý¼ö¿Í ¾à¼öÀÇ ¿À¿°µµ ÀÌ¹Ì ½É°¢ÇÑ Áö°æ¿¡ À̸£°í ÀÖÀ½Àº ´©±¸³ª ´Ù ¾Ë°í ÀÖ´Â »ç½ÇÀÔ´Ï´Ù. °¢Á¾ Á߱ݼӰú ¼¼±Õ¿À¿°ÀÇ °¡´É¼ºÀº »ý¼ö³ª ¾à¼öµµ ¾î¿ ¼ö ¾øÀÌ ¾È°í ÀÖ´Â ¹®Á¦Á¡ÀÔ´Ï´Ù. -¹Ì³×¶öÀÌ ÆþºÎÇÑ ¹°Àº ¸¶½Ã¸é ¿À·¡»ê´Ù±¸¿ä? ¹°¿¡ ´ëÇÑ ¿ÀÇØÄ¡°í À̺¸´Ù À§ÇèÇÑ °Íµµ ¾ø½À´Ï´Ù. ÈçÈ÷ ¹«½¼ ¾à¼ö´Ù ÇÏ¿© öºÐ,¸¶±×³×½·,Ä®½· µîÀÇ ¹Ì³×¶öÀÌ ¸¹Àº °ÍÀ» ÀÚ¶ûó·³ ¶°µå´Â °æ¿ì°¡ Àִµ¥ ÀÌ·± ¹«±â¹°Àº ºÒ¿ë¼º À̶ó ½Ä¹°¸¸ÀÌ Èí¼öÇÒ ¼ö ÀÖÀ¸¸ç °ú´Ù ¼·ÃëÇÏ°Ô µÇ¸é ÀÎüÀÇ ½ÅÀå,µ¿¸Æ,Ç÷¾× µî¿¡ ÃàÀûµÇ¾î ½É°¢ÇÑ ÁúȯÀ» ÀÏÀ¸Å³ ¼öµµ ÀÖ½À´Ï´Ù. ¹Ì³×¶öÀ» ¾ò±â À§Çؼ­¶ó¸é Â÷¶ó¸® À¯±â ¹Ì³×¶öÀÌ ÇÔÀ¯µÈ »ç°ú ÇÑ°³, ¸êÄ¡ ÇѸ¶¸®¸¦ ¸Ô´Â ÆíÀÌ ´õ ºü¸£°í ÁÁ½À´Ï´Ù. -Á¤¼ö±â¸¦ ¾²°í ÀÖÀ¸´Ï ¾È½ÉÀÌ´Ù±¸¿ä? Á¤¼ö±âµµ Á¤¼ö±â ³ª¸§ÀÔ´Ï´Ù. ¹Ì¼¼ÇÑ ¹ÙÀÌ·¯½º¿Í °¢Á¾ ¼¼±Õ, ÃÊ ¹Ì¸³ÀÚ·Î ±¸¼ºµÈ Áß±Ý¼Ó ¼ººÐ µîÀ» ¿Ïº®ÇÏ°Ô °É·¯³¾ ¼ö´Â ¾ø½À´Ï´Ù. ¹°·Ð ¾î´À Á¤µµÀÇ Á¤¼öÈ¿°ú´Â.±â´ëÇÒ ¼ö ÀÖ°ÚÁö¸¸, Á¤¼ö±â¸¦ ¾²°í ÀÖ´ÙÇؼ­ Áö±Ý ³»°¡ ¸Ô°í ÀÖ´Â ¹°ÀÌ ¾ÈÀüÇÏ´Ù´Â À§ÇèÇÑ »ý°¢Àº µÇµµ·Ï »¡¸® ¹ö¸®´Â °ÍÀÌ Çö¸íÇϸ®¶ó »ý°¢µË´Ï´Ù. -------------------------------------------------------------------- ###*¼¼»ó¿¡¼­ °¡Àå ºÎµå·´°Ô ¸¸³ª´Â ¹°!- ¿¬¼ö±â ¼ÒÇÁƼ¾Æ(WS-8200)*### ###*¼¼»ó¿¡¼­ °¡Àå ºÎµå·´°Ô ¸¸³ª´Â ¹°!- ¿¬¼ö±â ¼ÒÇÁƼ¾Æ(WS-8200)*### 1.¼¼»óÀÇ ¾î¶²¹°µµ ºÎµå·´°Ô ¹Ù²ãÁÝ´Ï´Ù.-À̿±³È¯ ¼öÁö·Î ¿¬¼ö¸¦ ¾òÀ½. 2.ÇǺο¡ ³î¶ó¿î º¯È­¸¦ °¡Á®´Ù ÁÖ´Â ¹° -ÇǺΠǥ¸é¿¡ ÀÖ´Â ³ëÆó¹°À» ±ú²ýÈ÷ Á¦°ÅÇÏ¿© ÇǺγëÈ­¸¦ ¹æÁöÇÏ°í ¿©µå¸§, ¹«Á», ºñµë, °Ç¼ºÇǺεîÀÇ °¢Á¾ ÇǺÎÁúȯÀ¸·ÎºÎÅÍ ÇǺθ¦ º¸È£ÇØÁÝ´Ï´Ù. ¶ÇÇÑ, È­Àå½Ã¿¡µµ È­Àå ¼ººÐÀÌ ÇǺο¡ °ö°Ô ½º¸çµé¾î °í¿î È­ÀåÀ» ÇÒ ¼ö ÀÖ½À´Ï´Ù. ƯÈ÷ ¹° ¼ÓÀÇ ÀÜ·ù¿°¼Ò¸¦ Á¦°ÅÇÔÀ¸·Î½á ¼¼Æ÷¿Í ¼¼Æ÷Á¶Á÷À» ³ëÈ­, º¯Çü½ÃÅ°°í ¼º È£·Î¸ó¿¡ ¿µÇâÀ» ¹ÌÄ¡´Â µî ¿©·¯ À§Çè¿ä¼Ò·ÎºÎÅÍ ÇعæµÇ´Â ¿Âõ¿å È¿°ú¸¦ ÁÝ´Ï´Ù. 3.ºÎµå·´°Ô ½ÅÁø´ë»ç¸¦ ÃËÁøÇØÁÖ´Â ¹°! 4.¸ð¹ß °Ç°­±îÁö ÁöÄÑÁÖ´Â ¹°! -¿¬¼ö´Â ¸Ó¸®Ä«¶ô »çÀÌ¿¡ Âîµç ¶§¸¦ ¼¤Çª³ª ¸°½º¸¦ »ç¿ëÇÏÁö ¾Ê¾Æµµ ºñ´©¸¸À¸·Î ±ú²ýÀÌ Á¦°ÅÇØÁÝ´Ï´Ù. ¶ÇÇÑ ¼¤Çª³ª ºñ´©¼ººÐÀ» ¿Ïº®È÷ ºÐÇØÇϹǷΠ¸Ó¸®°áÀ» Âû¶ûÂû¶û ºÎµå·´°í À±±âÀÖ°Ô °¡²Ù¾î ÁÖ´Â °ÍÀº ¹°·Ð Å»¸ð ¿¹¹æ¿¡µµ ÁÁÀº È¿°ú¸¦ ³ªÅ¸³À´Ï´Ù. 5.¼¼Å¹È¿°ú ¹× ȯ°æÀ» ÁöÅ°´Â ¹°! -¿¬¼ö·Î ¼¼Å¹À» ÇÏ¸é ¹°ÀÇ Ç¥¹éÀÛ¿ë ¹× Á¤Àü±â¸¦ ¹æÁöÇÒ ¼ö ÀÖ½À´Ï´Ù ¶ÇÇÑ, ÀÏ¹Ý ¹°º¸´Ù ¾à 70%Á¤µµÀÇ ¼¼Á¦¸¦ Àý°¨½ÃÄÑ ÁֹǷΠ¼öÁú ȯ°æ º¸È£¿¡ ¾ÕÀå¼­¸ç, ¼¼Å¹¹°ÀÇ »óÅ°¡ ºÎµå·´°í ºñ´°¹°ÀÌ Àß ºüÁö¸ç ¼¼Å¹½Ã°£ÀÌ ´ÜÃàµÇ°í ¼¼Å¹¹° ¼ö¸íÀÌ ±æ¾îÁý´Ï´Ù. -------------------------------------------------------------------- [°ø°³µÈ ¾ð·Ðº¸µµ ÀÚ·á] *¼öµ¾¹° ¸ð¸£°í ¸¶½Å´Ù. -Á¤¼ö ±â¼úµµ ÈÄÁø±¹, ¿°¼Ò ÆۺױⰡ °íÀÛ! -¿ì¸® °Ë»ç±âÁØ 38°³, WHO±âÁØÀº 48°³, ¹Ì±¹Àº 85°³ [Çѱ¹ÀϺ¸ 94³â 1¿ù15ÀÏ] *¼öµ¾¹° Á¤¼ö¾àÇ° À¯ÇØ -ÀÌ»êÈ­ ¿°¼Ò°¡ µ¶¼Ò·Î º¯Áú, û»öÁõ À¯¹ß [Á¶¼±ÀϺ¸ 1996³â 9¿ù3ÀÏ] *¼öµ¾¹° ºÒ¾È , ¾à¼ö¿À¿°...¹°°øÆ÷ -»ý¼öµµ ¹æÄ¡µÇ¾î ÀÖ´Ù. -¼öµµ, »ý»ê½Ã¼³ °ü¸®¾û¸Á [Á¶¼±ÀϺ¸ 94³â 1¿ù 21ÀÏ] *4»ý¼ö Çã°¡¾÷ü(ÁÖÇÑ ¿Ü±¹Àοë/¼öÃâ¿ë)4°÷¿¡¼­ ±âÁØÄ¡ 31¹è °ËÃâ -¼®¼ö, ¿¡¸Ó·²µå, »çÆÄÀ̾î, ¸¶¿îƾ [Çѱ¹ÀϺ¸ 89³â 9¿ù26ÀÏ] *½ÃÆÇ»ý¼ö ¼¼±Õ "¿ì±Û" -±âÁØÄ¡º¸´Ù 27¹è ÃÊ°ú [±¹¹ÎÀϺ¸ 89³â 10¿ù 24ÀÏ] *À¯¸í»ç »ý¼öµµ ¼¼±Õ ¿ì±Û -ÃÖ°í 80¹è±îÁö ÀϹݼ¼±Õ°ú ´ëÀå±Õ °ËÃâ [±¹¹ÎÀϺ¸ 90³â 4¿ù14ÀÏ] *»ý¼ö ¸çÄ¥ Áö³ª¸é ½Ä¼ö·Î ºÎÀûÇÕ -°³ºÀÈÄ 5ÀÏ°¿£ ¼¼±Õ µæ½Ç!! [¼¼°èÀϺ¸ 90³â 4¿ù15ÀÏ] *¼­¿ï ÁöÇϼö 87.½ÃÆÇ »ý¼ö¿¡¼­ ÀϹݼ¼±Õ ¼öµ¾¹° ±âÁØ 47¹è °ËÃâ -À½¿ë¼ö °Ç°­ÇÇÇØ¿ì·Á À¯Åë±ÔÁ¦ ½Ã±Þ [Á¶¼±ÀϺ¸ 1996³â 3¿ù28ÀÏ] *¼­¿ï ÁöÇϼö88% ¸ø¸¶½Å´Ù-¶¥Æı⠰ø»ç¿¡ µû¸¥ ¿À¿°µµ ½É°¢.! -Çϼö°ü5m¸¶´Ù ÇÑ°÷ÆÄ¼Õ 16%´Â Çãµå·¿¹°·Îµµ ºÎÀûÇÕ. [Á¶¼±ÀϺ¸ 1997³â 3¿ù7ÀÏ] *¼öµ¾¹° ¹ÙÀÌ·¯½º ³í¶õ -¼­¿ï´ë ±è»óÁ¾ ±³¼ö(¹Ì»ý¹°ÇÐ) ¼öµ¾¹°¿¡¼­ ³ú¼ö¸·¿° ¹ÙÀÌ·¯½º °ËÃâ -¾î¸° ¾ÆÀ̵鿡°Ô °í¿­°ú °¨±âÁõ»óÀ» ÀÏÀ¸Å³¼ö ÀÖ´Ù°í ¹ßÇ¥ [Á¶¼±ÀϺ¸ 1997³â 12¿ù23ÀÏ] *Á¤¼öÀå, ¼öµµÀü À§»ý°ü¸® ¼ÒȦ -¼öÁú±âÁØ ÃÖ°í 26¹è ÃÊ°ú -¼Òµ¶µî Á¤¼öó¸® ¹ÌÈí, ±Þ¼ö°ü ³ëÈÄÈ­ [¼­¿ï °æÁ¦½Å¹® 1997³â 8¿ù 4ÀÏ] *.ºñ»ó±Þ¼ö 38% ½Ä¼ö ºÎÀûÇÕ -Áú¼Ò, ¼¼±Õµî ±âÁØÄ¡ ÃÊ°ú -û»öÁõ À¯¹ß¿ì·Á, Çб³ ½Ã¼³µµ Æ÷ÇÔ, Ãæ°Ý!! [Çѱ¹°æÁ¦½Å¹® 1996³â 6¿ù12ÀÏ] *ÆÈ´çÈ£, ¹«Ã¥ÀÓÇÑ ÇàÁ¤¿¡ 3±Þ¼ö Àü¶ôÀ§±â -³¯·Î ¿À¿°µÇ´Â 2õ¸¸ÀÇ Á¥ÁÙ [Á¶¼±ÀϺ¸ 1998³â 4¿ù28ÀÏ] *³í, ³ó°¡ ÁÖº¯¿¡ »ý¼ö°øÀå-°øÀå, »ýÈ°Çϼö ³ó¾à¿À¿° ³ëÃâ -Á¤¼ö±âÁØ, À¯Åë±âÇÑ Á¦¸Ú´ë·Î -ºÒ¹ýÆǸÅ, ½Ä´ç, °¡°Ôµµ ÁöÇϼö ³»´ÙÆȾÆ... [Á¶¼±ÀϺ¸ 94³â 1¿ù22ÀÏ] *Á×Àº¹°ÀÌ È帣´Â Àü±¹ÀÇ °­-4´ë°­ Æó¼öÀ¯ÀÔ [µ¿¾ÆÀϺ¸ 89³â 8¿ù11ÀÏ] *ÁöÇϼö·Î »ý¼ö ¸¸µé±â ¿­Ç³-[Çѱ¹ÀϺ¸ 89³â 9¿ù28ÀÏ] *³¯ÀÌ °¥¼ö·Ï ¿À¿°Àº ´õ¿í´õ ½É°¢ÇØÁö°í ÀÖ½À´Ï´Ù.* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ######################################################################### #############[·çÀ̺¸½ºÆ¼ Rooibos ·çÀ̺¸½ºÆ¼ Rooibos ·çÀ̺¸½ºÆ¼]########## ######################################################################### ######Á¦Á¶¿ø:»ï¾ç½ÄÇ°#########Á¦Á¶¿ø:»ï¾ç½ÄÇ°#########Á¦Á¶¿ø:»ï¾ç½ÄÇ°#### ######################################################################### *¿Ü±¹¿©Çà½Ã ²À »ç¿À½Ã´ø ±× Â÷(tea)ÀÌÁ¨ ±¹³»¿¡¼­µµ ½±°Ô ±¸ÇϽǼö ÀÖ½À´Ï´Ù *¿Ü±¹¿¡´Â ÀÌ¹Ì ¿À·¡ÀüºÎÅÍ ¾Ë·ÁÁ®ÀÖÀ¸¸ç ±× È¿°ú ¶ÇÇÑ ³î¶ó¿ï Á¤µµÀ̸ç, ±×³É º¸¸®Â÷ ó·³ ²ú¿©¼­ Â÷°Ô ¶Ç´Â ¶ß°Ì°Ô ¸¶½Ã¸é µË´Ï´Ù... *±¹³»¿¡µµ ÀÌ¹Ì °¢Á¾ ¾ð·Ð°ú ¿¬±¸±â°ü¿¡ ±× È¿´ÉÀÌ ÀÔÁõµÇ¾úÀ¸¸ç À½¿ëÀÚÀÇ Ã¼Çè»ç·Êµµ ²ÙÁØÈ÷ È®ÀεǰíÀÖ½À´Ï´Ù. *°¡°Ý: 3~4Àΰ¡Á·±âÁØ -¼Ò:1´ÞºÐ·®(1.3¸¸¿ø) [¿î¼Ûºñ Æ÷ÇÔ] Áß:2´ÞºÐ·®(2.5¸¸¿ø) ´ë:6´Þ ºÐ·®(6.3¸¸¿ø) ###Á¦Á¶¿ø:»ï¾ç½ÄÇ°######Á¦Á¶¿ø:»ï¾ç½ÄÇ°######Á¦Á¶¿ø:»ï¾ç½ÄÇ°### ###·çÀ̺¸½ºÆ¼´Â ƯÈ÷ ÀÌ·± ºÐµé¿¡°Ô È¿°ú°¡ ÀÖ½À´Ï´Ù.### -º¯ºñ(ƯÈ÷ ¿©¼º), °¢Á¾ ÇǺο°, ¾ÆÅäÇǼº ÇǺο°, ¾Ë·¯Áö üÁú -ÇǺΰ¡ ¾ÊÁÁÀ¸½Å ºÐ(±â¹Ì, ÁÖ±Ù±ú, ¿©µå¸§, °ÅÄ¥°í °ÇÁ¶ÇÑ ÇǺÎ) -ÀÚ¿¬½º·¯¿î ´ÙÀ̾îÆ®¸¦ ¿øÇϽôºР-À§, Àå, °£ÀÌ ¾ÊÁÁÀ¸½Å ºÐ -¸Ó¸®Ä«¶ôÀÌ ¸¹ÀÌ ºüÁö½Ã´Â ºÐ(Å»¸ð¿¹¹æ, ¸ð¹ß¼ºÀå) -¸¹ÀÌ ÇÇ°ïÇØ ÇϽô ºÐ -¼÷¸éÀ» ÃëÇÏÁö ¸øÇϽô ºÐ -Ç÷¾Ð¿¡ ÀÌ»óÀÌ ÀÖÀ¸½Å ºÐ(°íÇ÷¾Ð, ÀúÇ÷¾Ð) *·çÀ̺¸½ºÆ¼(ROOIBOS tea)¶õ? ³² ¾ÆÇÁ¸®Ä« Èñ¸ÁºÀ ÇØ¹ß 457MÀÌ»ó ¹«°øÇØ °í¿øÁö´ë ¿¡»ç¸¸ ÀÚ»ýÇÏ´Â ½Ä¹°·Î½á Çö´ëÀÎÀÇ °¢Á¾ Áúº´°ú ³ëÈ­¸¦ ¿¹¹æ, Ä¡·áÇÒ ¼ö ÀÖ´Â S.O.D. ¼ººÐÀ» ´Ù·®À¸·Î ÇÔÀ¯ÇÏ°í ÀÖÀ¸¸ç »ç¶÷¿¡°Ô ²À ÇÊ¿äÇÑ °¢Á¾ ¹Ì³×¶ö ¼ººÐ(ÀÎ, ö, Ä®½·, ³ªÆ®·ý Ä®·ý, ¸¶±×³×½·, µ¿, ¾Æ¿¬ ¸Á°£, Äɸ£¼¼Æ¾) À» ¼·ÃëÇϸ鼭 ÀÚ¶ó´Â Èñ±ÍÇÏ¸ç ±ÍÇÑ ¼ººÐÀ» °¡Áø "¾Æ½ºÆĶó»ç½º ¸®³×¾Æ ¸®½º"¶ó´Â ½Ä¹°À» ¹«»ö¼Ò, ¹«¹æºÎÁ¦,¹«Ä«ÆäÀΠó¸®ÇÑ Ãµ¿¬ ¹«°øÇØ Â÷(Tea)·Î ¸¶½Ç¼ö·Ï °Ç°­ÇØÁö´Â ½ÅºñÀÇ Â÷ ÀÔ´Ï´Ù. *À¯ÇØ»ê¼Ò¶õ? ¿ì¸®°¡ ¸ÅÀÏ È£ÈíÇÏ´Â »ê¼ÒÁß 2~3%°¡ ü¿Ü·Î ¹èÃâµÇÁö ¸øÇÏ°í ÀÎü¿¡ ³²¾Æ Çö´ëÀÎÀÇ °¢Á¾ Áúº´°ú ³ëÈ­ÀÇ ¿øÀÎÀÌ µÇ¸ç ¿ì¸®ÀÇ °Ç°­À» À§ÇùÇÏ´Â µ¶¼º»ê¼Ò *S.O.D.(Super Oxide Dismutase)¶õ? "À¯ÇØ»ê¼Ò Á¦°ÅÈ¿¼Ò"·Î¼­ ¿ì¸® ¸ö¾È¿¡ À¯ÇØ»ê¼Ò¸¦ ÁßÈ­ ¶Ç´Â Á¦°ÅÇÏ´Â ¼ººÐÀÌ°í ¹Ì±¹ÀÇ °úÇÐ ¾ÆÄ«µ¥¹Ì¿¡¼­ "²ÞÀÇÈ¿¼Ò"¶ó°í ¹ßÇ¥ÇÏ¿© Àü¼¼°è°¡ ÁÖ¸ñÇÏ°í ÀÖ´Â ¿ì¸®ÀÇ ÀÎü¿¡ ²À ÇÊ¿äÇÑ ¼ººÐÀÔ´Ï´Ù. *±¹³» ´ë±â¾÷ Á¦Ç°ÀÇ SOD¼ººÐ ÀÀ¿ë»ç·Ê. -»ï¾ç½ÄÇ°: »ï¾ç¶ó¸é, ¯±¸ -µ¿¾ÆÁ¦¾à: ¸ÞŸº¼¶ó(ÇÇ·Îȸº¹Á¦) -ºÎ±¤¾àÇ°: natural 100(·çÀ̺¸½º ºñ´©) -(ÁÖ)³ªµå¸® È­ÀåÇ° - SOD À̳뼾½º UVÅõ¿þÀÌ ÄÉÀÌÅ© -TV: 99³â 10¿ùÁß ±¹³»ÃÖÃÊ TV±¤°í ½Ç½ÃÈ®Á¤! ±¹¹Î °Ç°­¿¡ ±â¿©ÇÏ´Â-------------- (ÁÖ)Çѱ¹ ·çÀ̺¸½º *³¡±îÁö ÀоîÁּż­ °¨»çµå¸³´Ï´Ù... °Ç°­Çϼ¼¿ä... --AD_2000_PART_BOUNDARY_19990606-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 22 19:41:18 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 3D60014F64; Fri, 22 Oct 1999 19:41:13 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id UAA21589; Fri, 22 Oct 1999 20:41:11 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id UAA26689; Fri, 22 Oct 1999 20:41:26 -0600 (MDT) Message-Id: <199910230241.UAA26689@harmony.village.org> To: current@freebsd.org, mobile@freebsd.org Subject: sio working Date: Fri, 22 Oct 1999 20:41:26 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org OK. I managed to get sio and ep working on the plane back from FreeBSDCon'99. There are some problems with card eject at the moment, but will be committing things to the tree shortly. Basically, I completely gutted the compatibilty layer and it became much easier. More later after I've had a chance to spend time with my wife and unwind from the drive back. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 22 23:44:37 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id DCA2414C21; Fri, 22 Oct 1999 23:44:20 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id AAA22001; Sat, 23 Oct 1999 00:44:18 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id AAA27296; Sat, 23 Oct 1999 00:44:23 -0600 (MDT) Message-Id: <199910230644.AAA27296@harmony.village.org> To: mobile@freebsd.org, current@freebsd.org, committers@freebsd.org Reply-To: mobile@freebsd.org Subject: Massive pccard disruptions to continue Date: Sat, 23 Oct 1999 00:44:23 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org OK. I'm getting ready to commit the sio modem changes to make it work with pccard. This is a heads up that how ep is configured has changed to be more sane for pccard, and also that things may be massively unstable for a few days. That's the nature of current. I have a couple of minor issues to take care of before I actually do the commit. To summarize the changes, I killed the legacy PCCARD_MODULE macro and all things associated with it. It is not longer emulated, even in the slightest. Everything is done via newbus. This kills lots and lots lines and makes it possible for newbus attachments, and only newbus attachments. Also, pccardd no longer sets the unit number, so the unit numbers have changed. The ep driver is hit by this since it checks against NEP (this should be fixed, btw) in places. This breaks all PCCARD drivers, except those that have been converted. I've converted ep and sio. Ed will follow by me or someone else very shortly. I've also heard that people are interested in getting the pccard support for floppy as well. Look at sio or ep for a cut and paste model of how to do things. Neither is perfect, but can be used if you absolutely MUST upgrade the driver before the new pccard code can be committed, ported and stabilized. If you are dying to try out the sio patches before they make it into the tree, one can grab a snapshot I just made from http://www.freebsd.org/~imp/pccard-snap.patch [**] which contain many known problems that I'm working on correcting. I have some debug writes I need to remove, one minor issue with the message ep0: eeprom failed to come ready issued twice, but it seems to work none the less. Cards cannot be ejected for reasons unknown at this time. DO NOT RUN THESE PATCHES UNLESS YOU HAVE A BACKUP KERNEL IN CASE I'VE BROKEN YOUR LAPTOP. READ THE PATCH FOR MINOR, BUT IMPORTANT CHANGES TO HOW EP IS CONFIGURED. Many thanks to Doug Rabson and Peter Wemm for their help, patient explainations and goading while at FreeBSD Con '99. Without this, I wouldn't have been able to make this work. Thanks also to Peter for the patches that helped me understand sio's problem better and allowed me to make this work. I appologize to them that I was unable to get them done at FreeBSD CON'99. Comments to me... Warner P.S. I wish I could add pictures of the happy dance I did after seeing the many pictures of this on the FreeBSD CON pictures web site... [*] Unless absolutely necessary... [**] Keep trying if this file isn't there... I'm generating it now as I type. I'm generating them from my laptop connected via the ep driver... They may also contain other things as well, but should be fairly clean: wc pccard-snap.patch 3389 12760 91407 pccard-snap.patch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 0:56:18 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id AB0DD14D24 for ; Sat, 23 Oct 1999 00:56:14 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id BAA22300; Sat, 23 Oct 1999 01:56:12 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id BAA27793; Sat, 23 Oct 1999 01:56:29 -0600 (MDT) Message-Id: <199910230756.BAA27793@harmony.village.org> To: Andreas Klemm Subject: Re: pccardd initializes interf. too late (arpwatch port exits earlier...) Cc: J McKitrick , Adam Laurie , "Daniel O'Connor" , mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 21 Oct 1999 17:25:32 +0200." <19991021172532.A33862@titan.klemm.gtn.com> References: <19991021172532.A33862@titan.klemm.gtn.com> <380EC97F.B86F642B@algroup.co.uk> Date: Sat, 23 Oct 1999 01:56:29 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <19991021172532.A33862@titan.klemm.gtn.com> Andreas Klemm writes: : BTW, I got it managed now to configure rc.conf right for my : Xircon PCMCIA card. But ports like arpwatch startup earlier : and exit, because they can't find an ethernet device early : enough. : : What possibilities do I have, to give pccardd to initialize : the xe0 interface first and then starting network things ... In older versions of freebsd, this was the case. Actually pccardd was starting fast enough, but was suspending and going into the back ground too soon. Newer versions of rc.pccardd fix this problem. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 0:58:20 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 9E0E614D24 for ; Sat, 23 Oct 1999 00:58:16 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id BAA22312; Sat, 23 Oct 1999 01:58:15 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id BAA27829; Sat, 23 Oct 1999 01:58:33 -0600 (MDT) Message-Id: <199910230758.BAA27829@harmony.village.org> To: Adam Laurie Subject: Re: pccardd initializes interf. too late (arpwatch port exits earlier...) Cc: Andreas Klemm , J McKitrick , "Daniel O'Connor" , mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 21 Oct 1999 17:49:09 BST." <380F4405.4ABC45@algroup.co.uk> References: <380F4405.4ABC45@algroup.co.uk> <380EC97F.B86F642B@algroup.co.uk> <19991021172532.A33862@titan.klemm.gtn.com> Date: Sat, 23 Oct 1999 01:58:33 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <380F4405.4ABC45@algroup.co.uk> Adam Laurie writes: : You might want to check out the PAO stuff before you go any further - : I'm not sure if it addresses this particular issue, but the scripts are : different from the standard distribtion. This isn't a PAO vs normal issue, but rather a bug in /etc/rc.pccard where pccardd was started with a & when it shouldn't have been. Also, the -z flag should be used if it isn't used by default to force pccard to wait until after it has initialized the cards before tossing itself into the background. While these changes came from PAO, I know they are in 3.3 and likely 3.2 Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 1: 0: 9 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 111E015128 for ; Sat, 23 Oct 1999 00:59:59 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id BAA22323; Sat, 23 Oct 1999 01:59:46 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id CAA27913; Sat, 23 Oct 1999 02:00:04 -0600 (MDT) Message-Id: <199910230800.CAA27913@harmony.village.org> To: "Robert V. Baron" Subject: Re: pccardd initializes interf. too late (arpwatch port exits ea Cc: J McKitrick , "Steve O'Hara-Smith" , Andreas Klemm , mobile@FreeBSD.ORG, "Daniel O'Connor" , Adam Laurie In-reply-to: Your message of "22 Oct 1999 12:23:10 EDT." References: Date: Sat, 23 Oct 1999 02:00:04 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message "Robert V. Baron" writes: : What the sleep does is almost the opposite. It delays the entire boot process : for 15 seconds after pccardd is started. This means that pccardd has enough : time to do its thing and find the devices. So the system behaves more like : the pcmcia devices were found during the system device probe. That's why -z is a good idea. It delays the boot process slightly, but makes sure that your nic cards are probed early in the boot process so sendmail, et al will have a better chance of working. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 1: 2:46 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 432DA14D24 for ; Sat, 23 Oct 1999 01:02:33 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id CAA22500; Sat, 23 Oct 1999 02:02:31 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id CAA27964; Sat, 23 Oct 1999 02:02:48 -0600 (MDT) Message-Id: <199910230802.CAA27964@harmony.village.org> To: Scott Worthington Subject: Re: Adaptec 1460C and 3.3-STABLE support yet? Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 21 Oct 1999 14:44:58 PDT." <380F895A.AB45F577@mindspring.com> References: <380F895A.AB45F577@mindspring.com> Date: Sat, 23 Oct 1999 02:02:48 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <380F895A.AB45F577@mindspring.com> Scott Worthington writes: : Oh boo. I just realized that support for the Adaptec 1460C for : FreeBSD 3.3-STABLE does not exist yet. Luoqi Chen just committed aic for -current and -stable. : It would be nice to have SCSI support on my laptop again. And I : know others would like it too. : : Anyone? Should be easy to add a newbus pccard attachment given my experimental changes announced here earlier. Or a pccard attachment in -stable. You may even be able to steal 90% of it from the old aic driver, and it isn't large to begin with. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 1: 9: 1 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id E43B214D24; Sat, 23 Oct 1999 01:08:51 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id CAA22519; Sat, 23 Oct 1999 02:08:49 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id CAA28033; Sat, 23 Oct 1999 02:09:07 -0600 (MDT) Message-Id: <199910230809.CAA28033@harmony.village.org> To: Donald Burr Subject: Re: Is VIA VT83C469 PCMCIA controller supported? Cc: FreeBSD Hardware , FreeBSD Mobile In-reply-to: Your message of "Sun, 03 Oct 1999 15:30:55 PDT." References: Date: Sat, 23 Oct 1999 02:09:06 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Donald Burr writes: : I just picked up a PCMCIA-to-ISA connectivity kit (a card that lets me : plug PCMCIA cards into my desktop computer). It uses the VIA VT83C469 : PCMCIA controller. Is this chipset supported by the PCMCIA drivers in : 3.3-STABLE and/or PAO? (I'd rather not have to move to PAO, though) : : Thanks! (ps: please CC: your replies to me in e-mail, if possible) Don't know. Likely it will probe as a Intel 82365, although it may probe as a Vadem 469. Give it a shot. 3.3 Stable should work. Stay away from -current for a little while with this one... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 1:13:14 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 4909214BE5 for ; Sat, 23 Oct 1999 01:13:08 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id CAA22531; Sat, 23 Oct 1999 02:13:06 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id CAA28062; Sat, 23 Oct 1999 02:13:24 -0600 (MDT) Message-Id: <199910230813.CAA28062@harmony.village.org> To: Bill Paul Subject: Re: PCIC on Libretto 100CT and 110CT Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 05 Oct 1999 11:08:32 EDT." <199910051508.LAA14385@skynet.ctr.columbia.edu> References: <199910051508.LAA14385@skynet.ctr.columbia.edu> Date: Sat, 23 Oct 1999 02:13:23 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199910051508.LAA14385@skynet.ctr.columbia.edu> Bill Paul writes: : Does anyone know what the differences are between the PCMCIA controllers : in the 100CT and the 110CT? Can anyone explain why the 110CT enables the : vpp voltages correctly and the 100CT doesn't? No clue. I do know that the Libretto 50CT and 70CT both didn't have a Vpp2 line at all, or had it not being able to supply 12V. Maybe something similar is going on here. I thought that the 100 and 110 were the same machine except for CPU, but maybe there is something different about how the machines are setup (eg one has PnP yes and one has no, so the pcic is getting setup slightly differently). Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 6: 2:30 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from va.com.au (va.com.au [203.15.106.1]) by hub.freebsd.org (Postfix) with ESMTP id 88BBA14C91; Sat, 23 Oct 1999 06:02:15 -0700 (PDT) (envelope-from jesse@va.com.au) Received: from [1.1.1.3] (203.108.18.244) by va.com.au with ESMTP (Eudora Internet Mail Server 2.2); Sat, 23 Oct 1999 22:32:10 +0930 Mime-Version: 1.0 X-Sender: jesse@mail.va.com.au Message-Id: In-Reply-To: <199910230809.CAA28033@harmony.village.org> References: <199910230809.CAA28033@harmony.village.org> Date: Sat, 23 Oct 1999 23:02:02 +1000 To: FreeBSD Hardware , FreeBSD Mobile From: jesse reynolds Subject: zircom pc-card's on a Fujitsu Lifebook 735Dx Laptop... Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Folx I've recently installed 3.3-RELEASE on this Fujitsu Lifebook 735Dx laptop. I reconfigured and recompiled the kernel with various pc-card components turned on, including the xe driver which is necessary for the zircom cards. The two cards I have are an ethernet only PS-CE2-10, and an ethernet and modem CEM33. I'd be happy to get either of these cards working. I believe I have a CardBus system, not a standard PCMCIA system. I have not yet added the file /etc/pccard.conf because it's here that I am stuck. I don't know what strings to use in this file because pccarcd doesn't work. Output of pccardc is: # pccardc dumpcis Read return -1 bytes (expected 2) pccardc: CIS code read: Cannot allocate memory Read return -1 bytes (expected 10) Configuration data for card in slot 1 2 slots found # So yes, what's happening here? I'm not sure what sort of pccard system is in this Fujitsu, but the following entries from an earlier boot may help: (from dmesg) probing pci bus... (etc) ... chip3: rev 0x01 int a irq 9 on pci0.19.0 chip4: rev 0x01 int b irq 9 on pci0.19.1 ... I've also noticed that in /var/log/messages the kernel is writing messages when I insert and remove cards, as follows: Oct 19 06:47:24 /kernel: Card inserted, slot 1 So it knows when cards are inserted and removed, which is good. Is it the PCI to CardBus bridge that might be a problem? I see in the XE readme that FreeBSD has no support for CardBus systems? I'm including a few files here... /etc/rc.conf output of dmesg /usr/src/sys/i386/conf/FUZZY (my kernel config file) I have posted this to the XE driver list, but Scott Mitchell said I should fire this at freebsd-mobile to see how support for CardBus is going. Cheers Jesse -----------------------/etc/rc.conf : -------------------------- # This file now contains just the overrides from /etc/defaults/rc.conf # please make all changes to this file. # -- sysinstall generated deltas -- # moused_port="/dev/psm0" moused_type="auto" moused_enable="NO" gateway_enable="YES" # -- sysinstall generated deltas -- # moused_enable="YES" ----------------------- dmesg output : -------------------------- Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 3.3-RELEASE #1: Mon Oct 18 23:58:00 EST 1999 root@fuzzy.syd.va.com.au:/usr/src/sys/compile/FUZZY Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P55C (133.64-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x543 Stepping = 3 Features=0x8001bf real memory = 33554432 (32768K bytes) config> di sio1 config> di sio0 config> di ppc0 config> di zp0 No such device: zp0 Invalid command or syntax. Type `?' for help. config> di ze0 No such device: ze0 Invalid command or syntax. Type `?' for help. config> di lnc0 No such device: lnc0 Invalid command or syntax. Type `?' for help. config> di le0 No such device: le0 Invalid command or syntax. Type `?' for help. config> di ie0 No such device: ie0 Invalid command or syntax. Type `?' for help. config> di fe0 No such device: fe0 Invalid command or syntax. Type `?' for help. config> di ex0 No such device: ex0 Invalid command or syntax. Type `?' for help. config> di ep0 No such device: ep0 Invalid command or syntax. Type `?' for help. config> di ed0 No such device: ed0 Invalid command or syntax. Type `?' for help. config> di cs0 No such device: cs0 Invalid command or syntax. Type `?' for help. config> q avail memory = 29978624 (29276K bytes) Preloaded elf kernel "kernel" at 0xc02c2000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc02c209c. Probing for devices on PCI bus 0: chip0: rev 0x01 on pci0.0.0 chip1: rev 0x01 on pci0.1.0 ide_pci0: rev 0x01 on pci0.1.1 chip2: rev 0x01 on pci0.1.3 pcic0: rev 0x01 int a irq 9 on pci0.19.0 pcic1: rev 0x01 int b irq 9 on pci0.19.1 vga0: rev 0xd3 int a irq 255 on pci0.20.0 Probing for PnP devices: Probing for devices on the ISA bus: sc0 on isa sc0: VGA color <16 virtual consoles, flags=0x0> atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa psm0 irq 12 on isa psm0: model Generic PS/2 mouse, device ID 0 fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 0 (wd0): wd0: 1556MB (3187296 sectors), 3162 cyls, 16 heads, 63 S/T, 512 B/S wdc1 at 0x170-0x177 irq 15 on isa wdc1: unit 0 (atapi): , removable, accel, dma, iordy acd0: drive speed 2416KB/sec, 128KB cache acd0: supported read types: CD-DA acd0: Audio: play, 16 volume levels acd0: Mechanism: ejectable tray acd0: Medium: no/blank disc inside, unlocked wt0 not found at 0x300 mcd0 not found at 0x300 matcdc0 not found at 0x230 xe0: probe xe0 not found vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa npx0 on motherboard npx0: INT 16 interface PC-Card VLSI 82C146 (5 mem & 2 I/O windows) pcic: controller irq 3 Initializing PC-card drivers: xe sio Intel Pentium detected, installing workaround for F00F bug IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to accept, logging limited to 100 packets/entry by default BRIDGE 981214, have 4 interfaces DUMMYNET initialized (990504) IP Filter: initialized. Default = pass all, Logging = enabled changing root device to wd0s2a Card inserted, slot 0 Card inserted, slot 1 ------------ /usr/src/sys/i386/conf/FUZZY : -------------------------- # # FUZZY - attempt to build a kernel that supports the # Zircom PS-CE2-10 PCCard Ethernet Card # # Jesse Reynolds 1999.10.18 # # PCCARD -- Generic machine with WD/AHx/NCR/BTx family disks and PCMCIA # hardware support # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.freebsd.org/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.ORG/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # $FreeBSD: src/sys/i386/conf/PCCARD,v 1.15.2.4 1999/08/29 17:05:59 iwasaki Exp $ machine "i386" cpu "I386_CPU" cpu "I486_CPU" cpu "I586_CPU" cpu "I686_CPU" ident FUZZY maxusers 32 options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options MFS #Memory Filesystem options MFS_ROOT #MFS usable as root device, "MFS" req'ed options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, "NFS" req'ed options MSDOSFS #MSDOS Filesystem options "CD9660" #ISO 9660 Filesystem options "CD9660_ROOT" #CD-ROM usable as root. "CD9660" req'ed options PROCFS #Process filesystem options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Be pessimistic about Joe SCSI device options UCONSOLE #Allow users to grab the console options FAILSAFE #Be conservative options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor # Jesse's adding the following: options MROUTING # multicast routing options IPFIREWALL # firewall options IPFIREWALL_VERBOSE # print info about dropped packets options IPFIREWALL_FORWARD # enable transparent proxy support options "IPFIREWALL_VERBOSE_LIMIT=100" # limit verbosity options IPFIREWALL_DEFAULT_TO_ACCEPT # allow all by default options IPDIVERT # divert sockets options IPFILTER # kernel ipfilter support options IPFILTER_LOG # ipfilter logging options "ICMP_BANDLIM" options DUMMYNET options BRIDGE options NETATALK #Appletalk comms protocols config kernel root on wd0 # To make an SMP kernel, the next two are needed #options SMP # Symmetric MultiProcessor Kernel #options APIC_IO # Symmetric (APIC) I/O # Optionally these may need tweaked, (defaults shown): #options NCPU=2 # number of CPUs #options NBUS=4 # number of busses #options NAPIC=1 # number of IO APICs #options NINTR=24 # number of INTs controller isa0 controller pnp0 controller eisa0 controller pci0 controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 disk fd0 at fdc0 drive 0 disk fd1 at fdc0 drive 1 options "CMD640" # work around CMD640 chip deficiency controller wdc0 at isa? port "IO_WD1" bio irq 14 disk wd0 at wdc0 drive 0 disk wd1 at wdc0 drive 1 controller wdc1 at isa? port "IO_WD2" bio irq 15 disk wd2 at wdc1 drive 0 disk wd3 at wdc1 drive 1 options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM device acd0 #IDE CD-ROM device wfd0 #IDE Floppy (e.g. LS-120) # A single entry for any of these controllers (ncr, ahb, ahc) is # sufficient for any number of installed devices. # controller ncr0 # controller ahb0 # controller ahc0 # controller isp0 # This controller offers a number of configuration options, too many to # document here - see the LINT file in this directory and look up the # dpt0 entry there for much fuller documentation on this. # controller dpt0 # controller adv0 at isa? port ? cam irq ? # controller adw0 # controller bt0 at isa? port ? cam irq ? # controller aha0 at isa? port ? cam irq ? # controller scbus0 # device da0 # device sa0 # device pass0 # device cd0 #Only need one of these, the code dynamically grows device wt0 at isa? port 0x300 bio irq 5 drq 1 device mcd0 at isa? port 0x300 bio irq 10 controller matcd0 at isa? port 0x230 bio # device scd0 at isa? port 0x230 bio # atkbdc0 controlls both the keyboard and the PS/2 mouse controller atkbdc0 at isa? port IO_KBD tty device atkbd0 at isa? tty irq 1 device psm0 at isa? tty irq 12 device vga0 at isa? port ? conflicts # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? tty # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? tty #options XSERVER # support for X server #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std device npx0 at isa? port IO_NPX irq 13 # # Laptop support (see LINT for more options) # device apm0 at isa? disable flags 0x31 # Advanced Power Management # PCCARD (PCMCIA) support controller card0 device pcic0 at card? device pcic1 at card? device sio0 at isa? port "IO_COM1" flags 0x10 tty irq 4 device sio1 at isa? port "IO_COM2" tty irq 3 device sio2 at isa? disable port "IO_COM3" tty irq 5 device sio3 at isa? disable port "IO_COM4" tty irq 9 # Parallel port device ppc0 at isa? port? flags 0x40 net irq 7 controller ppbus0 device lpt0 at ppbus? device plip0 at ppbus? device ppi0 at ppbus? #controller vpo0 at ppbus? # # The following Ethernet NICs are all PCI devices. # # device al0 # ADMtek AL981 (``Comet'') # device ax0 # ASIX AX88140A #device de0 # DEC/Intel DC21x4x (``Tulip'') #device fxp0 # Intel EtherExpress PRO/100B (82557, 82558) #device mx0 # Macronix 98713/98715/98725 (``PMAC'') #device pn0 # Lite-On 82c168/82c169 (``PNIC'') #device rl0 # RealTek 8129/8139 #device sf0 # Adaptec AIC-6915 DuraLAN (``Starfire'') #device tl0 # Texas Instruments ThunderLAN #device tx0 # SMC 9432TX (83c170 ``EPIC'') #device vr0 # VIA Rhine, Rhine II #device vx0 # 3Com 3c590, 3c595 (``Vortex'') #device wb0 # Winbond W89C840F #device xl0 # 3Com 3c90x (``Boomerang'', ``Cyclone'') # Order is important here due to intrusive probes, do *not* alphabetize # this list of network interfaces until the probes have been fixed. # Right now it appears that the ie0 must be probed before ep0. See # revision 1.20 of this file. # device ed0 at isa? port 0x280 net irq 10 iomem 0xd8000 # device ie0 at isa? port 0x300 net irq 10 iomem 0xd0000 # device ep0 at isa? port 0x300 net irq 10 # device ex0 at isa? port? net irq? # device fe0 at isa? port 0x300 net irq ? # device le0 at isa? port 0x300 net irq 5 iomem 0xd0000 # device lnc0 at isa? port 0x280 net irq 10 drq 0 device xe0 at isa? port? net irq ? #device ze0 at isa? port 0x300 net irq 10 iomem 0xd8000 #device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 # device cs0 at isa? port 0x300 net irq ? pseudo-device loop pseudo-device ether pseudo-device sl 1 pseudo-device ppp 1 pseudo-device tun 1 pseudo-device pty 16 pseudo-device gzip # Exec gzipped a.out's # KTRACE enables the system-call tracing facility ktrace(2). # This adds 4 KB bloat to your kernel, and slightly increases # the costs of each syscall. options KTRACE #kernel tracing # This provides support for System V shared memory and message queues. # options SYSVSHM options SYSVMSG options SYSVSEM # The `bpfilter' pseudo-device enables the Berkeley Packet Filter. Be # aware of the legal and administrative consequences of enabling this # option. The number of devices determines the maximum number of # simultaneous BPF clients programs runnable. pseudo-device bpfilter 1 #Berkeley packet filter -------------------------------------------------------------------------- -- Jesse Reynolds - Virtual Artists Pty Ltd - http://www.va.com.au Email: jesse (at) va.com.au - http://virtual.artists To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 7:35:18 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from nwsl.mesh.ad.jp (ykh28DS38.kng.mesh.ad.jp [133.205.214.38]) by hub.freebsd.org (Postfix) with ESMTP id 562A514C94 for ; Sat, 23 Oct 1999 07:32:41 -0700 (PDT) (envelope-from y-nakaga@nwsl.mesh.ad.jp) Received: from nwsl.mesh.ad.jp (localhost [127.0.0.1]) by nwsl.mesh.ad.jp (8.9.2/8.9.2) with ESMTP id KAA00552; Sat, 23 Oct 1999 10:29:47 +0900 (JST) (envelope-from y-nakaga@nwsl.mesh.ad.jp) Message-Id: <199910230129.KAA00552@nwsl.mesh.ad.jp> To: "Daniel C. Sobral" Cc: Scott Worthington , freebsd-mobile@FreeBSD.ORG Subject: Re: Adaptec 1460C and 3.3-STABLE support yet? In-reply-to: Your message of "Sat, 23 Oct 1999 02:18:39 JST." <38109C6F.A47D7CD@newsguy.com> Date: Sat, 23 Oct 1999 10:29:46 +0900 From: NAKAGAWA Yoshihisa Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Boy, are you lucky... :-) Not having SCSI on my laptop has been a > source of major frustration for me for quite a while (not enough > frustration to get me to actually learn how to write a SCSI device > driver, though :). Alas, Luoqi just CAMified aic. It should be > showing up on the -stable tree soon. > > Remember, though, that the aic driver is known to be buggy. hmmm, I ported aic driver for PAO3, and it is working (buggy). But, CAM driver is depend on intr_config_hook, that execute by SYSINIT on boot time only. So, I must change CAM xpt code. I changed xpt_config() ad-hoc. #I don't work for new-bus. I work for PAO version only. -- NAKAGAWA, Yoshihisa y-nakaga@nwsl.mesh.ad.jp nakagawa@jp.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 9:16:26 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [63.67.141.99]) by hub.freebsd.org (Postfix) with ESMTP id 5765B14F08; Sat, 23 Oct 1999 09:16:10 -0700 (PDT) (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.8.8/8.8.7) with ESMTP id MAA29350; Sat, 23 Oct 1999 12:16:09 -0400 (EDT) Date: Sat, 23 Oct 1999 12:16:09 -0400 (EDT) From: "Matthew N. Dodd" To: mobile@FreeBSD.ORG Cc: current@FreeBSD.ORG, committers@FreeBSD.ORG Subject: Re: Massive pccard disruptions to continue In-Reply-To: <199910230644.AAA27296@harmony.village.org> 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 Sat, 23 Oct 1999, Warner Losh wrote: > To summarize the changes, I killed the legacy PCCARD_MODULE macro and > all things associated with it. It is not longer emulated, even in the > slightest. Everything is done via newbus. This kills lots and lots > lines and makes it possible for newbus attachments, and only newbus > attachments. Also, pccardd no longer sets the unit number, so the > unit numbers have changed. The ep driver is hit by this since it > checks against NEP (this should be fixed, btw) in places. Send your changes to me. I've been rewriting if_ep. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 10:56:47 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id B29EC14CF4; Sat, 23 Oct 1999 10:56:16 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) id 11f5Oh-0001Me-00; Sat, 23 Oct 1999 10:56:08 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id NAA86693; Sat, 23 Oct 1999 13:55:43 -0400 (EDT) (envelope-from will) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199910230241.UAA26689@harmony.village.org> Date: Sat, 23 Oct 1999 13:55:43 -0400 (EDT) Reply-To: Will Andrews From: Will Andrews To: Warner Losh Subject: RE: sio working Cc: mobile@FreeBSD.ORG, current@FreeBSD.ORG Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 23-Oct-99 Warner Losh wrote: > OK. I managed to get sio and ep working on the plane back from > FreeBSDCon'99. There are some problems with card eject at the moment, > but will be committing things to the tree shortly. I will be your guinea pig, if you like. :-) -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 11: 2: 8 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id C3C6914BC5; Sat, 23 Oct 1999 11:02:03 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id MAA25416; Sat, 23 Oct 1999 12:02:01 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id MAA32825; Sat, 23 Oct 1999 12:02:24 -0600 (MDT) Message-Id: <199910231802.MAA32825@harmony.village.org> To: Will Andrews Subject: Re: sio working Cc: mobile@FreeBSD.ORG, current@FreeBSD.ORG In-reply-to: Your message of "Sat, 23 Oct 1999 13:55:43 EDT." References: Date: Sat, 23 Oct 1999 12:02:24 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Will Andrews writes: : I will be your guinea pig, if you like. :-) Grab the current patches from http://www.freebsd.org/~imp/pccard-snap.patch but read my other posting about the warnings and such. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 11:19:34 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from leibniz.aciri.org (mg131-159.ricochet.net [204.179.131.159]) by hub.freebsd.org (Postfix) with ESMTP id 14C3914BE9 for ; Sat, 23 Oct 1999 11:19:21 -0700 (PDT) (envelope-from bkarp@aciri.org) Received: (from bkarp@localhost) by leibniz.aciri.org (8.9.3/8.9.2) id LAA02963 for freebsd-mobile@freebsd.org; Sat, 23 Oct 1999 11:35:40 -0700 (PDT) (envelope-from bkarp) Date: Sat, 23 Oct 1999 11:35:40 -0700 (PDT) From: Brad Karp Message-Id: <199910231835.LAA02963@leibniz.aciri.org> To: freebsd-mobile@freebsd.org Subject: Sony N505-VX PCIC IRQ?? Reply-To: karp@eecs.harvard.edu Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org My institute has just picked up one of the new Sony N505-VX laptops; same 3.1 lb. form factor as the 505-TR, but with a 333 MHz P-II. I've had no success whatsoever at assigning the PCIC in this laptop an IRQ such that dynamic card insertion/removal events are recognized by FreeBSD 3.2-RELEASE. Note that insert/remove interrupts work beautifully on the 505-TR under 3.2-R. On the TR, the PCIC is assigned to IRQ 10. I started with my 505-TR kernel on the N505-VX. Note further that the TR and N505 both appear to have similar, if not identical, PCICs. FreeBSD describes these two PCICs as follows: 505-TR: pcic0: rev 0x00 int a irq 255 on pci0.10.0 N505-VX: pcic0: rev 0x80 int a irq 255 on pci0.10.0 In case you want more details, pciconf says: 505-TR: card = 0x8030104d chip = 0x04751180 rev = 0x00 hdr = 0x02 N505-VX: card = 0x8061104d chip = 0x04751180 rev = 0x80 hdr = 0x02 I set "PnP OS" to "No" in the BIOS, so that the BIOS configures the USB controller with an IRQ, as I did on the 505-TR. The BIOS puts the USB controller on IRQ 9 (on both the TR and N505-VX). The N505-VX has a WinModem, rather than the nice "true" modem in the 505-TR, so IRQ 3, usually taken by sio1 on the TR, was available. FreeBSD successfully assigned IRQ 3 to the PCIC. But at IRQ 3, insert/remove events went unrecognized by FreeBSD. I booted into Win98, to observe where Win98 puts the PCIC. Win98 assigns IRQs on the N505-VX as follows: 1 keyboard 3 PCI WinModem 3 NeoMagic VGA 3 ACPI 4 COM1 5 **free** 6 **free** (the N505-VX has a USB floppy, and no legacy FDC) 7 LPT1 9 PCIC 9 USB 9 IEEE 1394 9 Yamaha DS-XG PCI audio 10 IrDA 11 Sony Programmable I/O Device 12 PS/2 mouse 14 Primary IDE 15 Primary IDE I tried the following: - disabled IrDA, as I did on the 505-TR, freeing up IRQ 10 - disabled IEEE 1394, in case that might collide with trying IRQ 9 I then, using /boot/loader.conf, tried setting the IRQ for the PCIC to all of: 5, 6, 9, 10, 11 (that is, using machdep.pccard.pcic_irq="X".) Card insertion/removal interrupts weren't seen by FreeBSD at any of these IRQs! :-( More specifically, IRQ assignment fails at IRQ 9 (collision with the USB IRQ), and at all other values, assignment succeeds, but no events are delivered to the PCIC interrupt handler. Does anyone have any experience with the N505-VX's PCIC, or suggestions as to what I might try? I'm wondering if I'll need to tweak a register or two in the PCIC's configuration. Many thanks, -Brad, karp@eecs.harvard.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 11:36:24 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from logatome.micronet.fr (logatome-2.francenet.fr [193.149.96.2]) by hub.freebsd.org (Postfix) with ESMTP id BCD1114C2C; Sat, 23 Oct 1999 11:36:19 -0700 (PDT) (envelope-from e-masson@kisoft-services.com) Received: from kisoft-services.com (Nantes4.francenet.net [193.149.110.68]) by logatome.micronet.fr (8.8.8/8.8.8) with ESMTP id UAA21619; Sat, 23 Oct 1999 20:36:09 +0200 (CEST) Message-ID: <38120042.D8F1BE5D@kisoft-services.com> Date: Sat, 23 Oct 1999 20:36:50 +0200 From: Eric MASSON Organization: Kisoft Services X-Mailer: Mozilla 4.6 [fr] (WinNT; I) X-Accept-Language: fr MIME-Version: 1.0 To: jesse reynolds Cc: FreeBSD Hardware , FreeBSD Mobile Subject: Re: zircom pc-card's on a Fujitsu Lifebook 735Dx Laptop... References: <199910230809.CAA28033@harmony.village.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi > # pccardc dumpcis > Read return -1 bytes (expected 2) > pccardc: CIS code read: Cannot allocate memory > Read return -1 bytes (expected 10) > Configuration data for card in slot 1 > 2 slots found Enable pccardd start in /etc/rc.conf and then pccardc dumpcis will work properly. Regards Eric -- Any opinions expressed above | Murphy's Law Corollary : are my own, not Kisoft's | Murphy was an optimist. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 22:17:41 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from va.com.au (va.com.au [203.15.106.1]) by hub.freebsd.org (Postfix) with ESMTP id 59C8C14C94; Sat, 23 Oct 1999 22:17:35 -0700 (PDT) (envelope-from jesse@va.com.au) Received: from [1.1.1.3] (203.108.19.84) by va.com.au with ESMTP (Eudora Internet Mail Server 2.2); Sun, 24 Oct 1999 14:47:31 +0930 Mime-Version: 1.0 X-Sender: jesse@mail.va.com.au Message-Id: In-Reply-To: <38120042.D8F1BE5D@kisoft-services.com> References: <199910230809.CAA28033@harmony.village.org> <38120042.D8F1BE5D@kisoft-services.com> Date: Sun, 24 Oct 1999 15:17:25 +1000 To: Eric MASSON From: jesse reynolds Subject: Re: zircom pc-card's on a Fujitsu Lifebook 735Dx Laptop... Cc: FreeBSD Hardware , FreeBSD Mobile Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 8:36 PM +0200 23/10/1999, Eric MASSON wrote: >Hi > >> # pccardc dumpcis >> Read return -1 bytes (expected 2) >> pccardc: CIS code read: Cannot allocate memory >> Read return -1 bytes (expected 10) >> Configuration data for card in slot 1 >> 2 slots found >Enable pccardd start in /etc/rc.conf and then pccardc dumpcis will work >properly. How should I do this? eg: pccardd_start="YES" is this what you mean? It's not working. I get the same output as above, only doubled, as I have both the cards installed (two of them). I'm not sure of the syntax to use here. I also tried the following with no success: pccardd_enable="YES" I actually thought it might be more to do with the order of the drivers starting up in the kernel, as it tries to probe for xe before it's loaded the PC-Card driver, and initialises xe and sio: xe0: probe xe0 not found . . . PC-Card VLSI 82C146 (5 mem & 2 I/O windows) pcic: controller irq 3 Initializing PC-card drivers: xe sio then again I'm probably barking up the wrong tree. Anyone? cheers jesse -- Jesse Reynolds - Virtual Artists Pty Ltd - http://www.va.com.au Faxmail: +61 2 9776 3594 Virtual Community Engine Email: jesse (at) va.com.au http://www.vce.net ?: http://jesse.va.com.au huh?: Community Server for ICQ: 4766684 MacOS Servers (W*API) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 22:40:27 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from sphinx.aciri.org (sphinx.aciri.org [192.150.187.13]) by hub.freebsd.org (Postfix) with ESMTP id 64816150BB for ; Sat, 23 Oct 1999 22:40:24 -0700 (PDT) (envelope-from bkarp@aciri.org) Received: (from bkarp@localhost) by sphinx.aciri.org (8.9.3/8.9.2) id WAA92488; Sat, 23 Oct 1999 22:40:24 -0700 (PDT) (envelope-from bkarp) Date: Sat, 23 Oct 1999 22:40:24 -0700 (PDT) From: Brad Karp Message-Id: <199910240540.WAA92488@sphinx.aciri.org> To: freebsd-mobile@freebsd.org Subject: Re: Sony N505-VX PCIC IRQ?? Cc: sean@stat.duke.edu Reply-To: karp@eecs.harvard.edu Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org First, one new data point and a question to all readers: I found the Ricoh RL5C475-specific code in 3.2-PAO's pci/pcic_p.c earlier this afternoon, that sets bit 3 in PCI configuration register 0x91 on the PCIC, apparently to force the PCIC to generate PCI interrupts for CSC events. I hacked this bit into my 3.2-R kernel (and verified with pciconf that the value was written and stuck), but still no insertion/removal interrupts. A question to all readers out there (especially those on the PAO team, who have this Ricoh-specific code): is there a source for programmer's reference information for this Ricoh PCIC? Or is it known to be register-compatible with anything better-documented (e.g., it looks like it's fairly similar to the TI-1131, such as in its use of 0x08 in register 0x91 for turning on CSC interrupts). Another question to all: do 3.X-PAO and 3.X-RELEASE get insert/remove IRQs on different buses? Newer PCICs can generate either PCI or ISA IRQs, to my understanding. Has PAO moved to PCI IRQs? The code in PAO's pcic_p.c seems in some places to suggest it uses PCI IRQs, and in others, ISA IRQs. I presume 3.X-RELEASE (non-PAO) only supports an ISA IRQ for the PCIC. > Any reason to not use 3.3-RELEASE or later? What about PAO ... they have > nice support for the Sony cdroms? The other option would be to use -current > (wait a few days ... some fairly large changes just went in). 3.3-R doesn't do anything new for PCICs, according to the CVS repository; one of the first things I checked. I want to see it work without PAO. We'd like to keep all our laptops running the same OS. And besides, after poking around with pciconf and reading include files for a few hours, I'm convinced it's very close to working...just a matter of a few bits in a few configuration registers the BIOS must not be taking care of. > Did it report these as being used? Have you tried using the polled mode? No, none of those IRQs are in use (except 9, for USB; waste of my time for trying it). And I tried polled mode (IRQ 0 in /boot/loader.conf), too, yes. No go. > What about scrapping the serial port and freeing up 4? Can you disable the > evil winmodem in the BIOS? Need the serial port for a Metricom Ricochet radio. And besides, the laptop is practically bursting with free IRQs (5, 6, 10, 11). The PCIC ought to interrupt fine on *one* of those. The BIOS does not allow disabling the WinModem, no. -Brad, karp@eecs.harvard.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 23:14:52 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from neptune.psn.net (neptune.psn.net [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id 089A014DF6; Sat, 23 Oct 1999 23:14:49 -0700 (PDT) (envelope-from will@shadow.blackdawn.com) Received: from [209.224.140.243] (helo=shadow.blackdawn.com) by neptune.psn.net with esmtp (PSN Internet Service 2.12 #3) id 11fGvW-0002P6-00; Sat, 23 Oct 1999 23:14:48 -0700 Received: (from will@localhost) by shadow.blackdawn.com (8.9.3/8.9.3) id CAA08978; Sun, 24 Oct 1999 02:13:20 -0400 (EDT) (envelope-from will) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199910231802.MAA32825@harmony.village.org> Date: Sun, 24 Oct 1999 02:13:20 -0400 (EDT) Reply-To: Will Andrews From: Will Andrews To: Warner Losh Subject: Re: sio working Cc: current@FreeBSD.ORG, mobile@FreeBSD.ORG Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 23-Oct-99 Warner Losh wrote: > In message Will Andrews > writes: >: I will be your guinea pig, if you like. :-) > > Grab the current patches from > http://www.freebsd.org/~imp/pccard-snap.patch > but read my other posting about the warnings and such. As of yet, I haven't tested your code. I will be, in a few. I took the opportunity to go over the patch first. I noticed a little discrepancy in ep_pccard_identify, where the switch() does not offer a default: case. You should put something like that in there and call the card "Unknown 3Com card" or somesuch. Same for ep_pccard_card_attach(). That's all I can manage from a quick skim of your code. Well, I'm gonna test out this kernel patch. (after safely backing up sys/). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 23 23:17:29 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from sphinx.aciri.org (sphinx.aciri.org [192.150.187.13]) by hub.freebsd.org (Postfix) with ESMTP id 0507214DF6 for ; Sat, 23 Oct 1999 23:17:27 -0700 (PDT) (envelope-from bkarp@aciri.org) Received: (from bkarp@localhost) by sphinx.aciri.org (8.9.3/8.9.2) id XAA92607 for freebsd-mobile@freebsd.org; Sat, 23 Oct 1999 23:17:27 -0700 (PDT) (envelope-from bkarp) Date: Sat, 23 Oct 1999 23:17:27 -0700 (PDT) From: Brad Karp Message-Id: <199910240617.XAA92607@sphinx.aciri.org> To: freebsd-mobile@freebsd.org Subject: Sony N505-VX SUCCESS with PCIC Reply-To: karp@eecs.harvard.edu Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just found it... No changes to code required. The PCI configuration registers are different between the 505-TR and N505-VX (beyond the version registers), but that's a red herring. On the old 505-TR, I could disable IrDA in the Sony Setup utility under Win98, and the BIOS would not assign IrDA an IRQ thereafter. That is, the Sony Setup utility seemed to touch some bits in the CMOS NVRAM that the BIOS obeyed after reboots. I did the same on the N505-VX, but the BIOS doesn't pay attention--it still allocates IRQ 10 (by default) to IrDA, even after you disable IrDA in Win98. With machdep.pccard.pcic_irq="10", it generates insertion/removal interrupts just fine, after I turned off IrDA *in the BIOS*. Other IRQs, even those totally free (even by Win98's account: 5 and 6) don't work for the PCIC. Summary: to get insertion/removal interrupts on a N505-VX, you *must* disable IrDA in the BIOS, and use /boot/loader.conf to force your PCIC IRQ to 10. -Brad, karp@eecs.harvard.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message