From owner-freebsd-mobile Sun Aug 20 1:48:45 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id 8BCF337B43E for ; Sun, 20 Aug 2000 01:48:42 -0700 (PDT) Received: from localhost (iwasaki.imasy.or.jp [202.227.24.92]) by tasogare.imasy.or.jp (8.10.2+3.3W/3.7W-tasogare/smtpfeed 1.07) with ESMTP id e7K8mbr42125; Sun, 20 Aug 2000 17:48:38 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) To: sanpei@sanpei.org Cc: mobile@FreeBSD.org Subject: Re: [PCCARD,PATCH] IOC_GET_RESOURCE_RANGE patch In-Reply-To: <200008200445.e7K4jp402239@lavender.sanpei.org> References: <200008200445.e7K4jp402239@lavender.sanpei.org> X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000820174828I.iwasaki@jp.FreeBSD.org> Date: Sun, 20 Aug 2000 17:48:28 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 20000228(IM140) Lines: 41 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I created experimental IOC_GET_RESOURCE_RANGE(but rename > PIOCSRESOURCE) ioctl code in sys/pccard which was suggested by > Warner-san. With below patch we could read free ioport/irq/memory > resources from userland programs. Great! I thought it should be done by adding new API to resource manager (in subr_rman.c ?) in order to obtain available resource range but try & error method also seems just enough for OLDCARD :-) BTW, I have few things to suggest. > + struct pccard_devinfo *devi; [snip] > + case PIOCSRESOURCE: /* sanpei */ > + pr = (struct pccard_resource *)data; > + pr->resource_addr = ~0ul; > + pccarddev = devclass_get_device(pccard_devclass, 0); > + MALLOC(devi, struct pccard_devinfo *, sizeof(*devi), M_DEVBUF, M_WAITOK); Do we need to malloc for pccard_devinfo dynamically? Also it seems there is a memory leakage bug here. Auto variable just enough for this I think. > + strcpy(devi->name, "ed"); Why "ed" ? I think this is a dummy driver name so "pccard" or "null" would be suitable rather than "ed", it's not big deal though, I could be wrong :-) > + if (!err) { > + r = bus_alloc_resource(child, pr->type, &rid, 0ul, ~0ul, pr->size, RF_ACTIVE); Maybe we don't need activate the resource actually here, just give 0 as flag instead of RF_ACTIVE. > + default: > + return EINVAL; I prefer that this kind of error checking comes first, it's not big deal though too. Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 5:22:20 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hotmail.com (f202.law9.hotmail.com [64.4.9.202]) by hub.freebsd.org (Postfix) with ESMTP id 5D5AA37B423 for ; Sun, 20 Aug 2000 05:22:19 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 20 Aug 2000 05:22:19 -0700 Received: from 141.151.13.238 by lw9fd.law9.hotmail.msn.com with HTTP; Sun, 20 Aug 2000 GMT X-Originating-IP: [141.151.13.238] From: "David Calkins" To: FreeBSD-mobile@FreeBSD.org Subject: PCMCIA network card Date: Sun, 20 Aug 2000 08:22:19 EDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 20 Aug 2000 12:22:19.0266 (UTC) FILETIME=[48BBE620:01C00AA1] Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am trying to setup FreeBSD 4 on my laptop. I have a LinkSys EC2T PCMCIA network card. After doing some digging I learned that I should be able to use the 'ed' driver since my card is compatible with the NE2000. I've tried many different kernel configurations, with no success. Most examples deal with isa network cards. If anyone has this working, I would appreciate it if you could send the appropriate lines of your kernel config file so I can figure out the format and args. obviously the specific resources wouldn't match, but it would help me. Thanks :-) David_Calkins@hotmail.com ________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail 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 Sun Aug 20 8:56: 8 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from prydn.tacni.net (207-55-167-144.dhc.net [207.55.167.144]) by hub.freebsd.org (Postfix) with SMTP id 9DEA237B424 for ; Sun, 20 Aug 2000 08:56:05 -0700 (PDT) Received: (qmail 5188 invoked by uid 1001); 20 Aug 2000 15:54:40 -0000 Date: Sun, 20 Aug 2000 10:54:40 -0500 From: Erich Zigler To: FreeBSD-mobile@FreeBSD.org Subject: Re: PCMCIA network card Message-ID: <20000820105440.B5130@superhero.org> Mail-Followup-To: Erich Zigler , FreeBSD-mobile@FreeBSD.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from david_calkins@hotmail.com on Sun, Aug 20, 2000 at 08:22:19AM -0400 X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Aug 20, 2000 at 08:22:19AM -0400, David Calkins wrote: > I've tried many different kernel configurations, with no success. Most > examples deal with isa network cards. Your configuration is fine. You just need to use pccardc to turn it on. -- Erich Zigler Sr. System Administrator You know... it really confuses the cats when you run circles around them. -- Dano To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 9:17:56 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from prydn.tacni.net (207-55-167-144.dhc.net [207.55.167.144]) by hub.freebsd.org (Postfix) with SMTP id B98CC37B43C for ; Sun, 20 Aug 2000 09:17:52 -0700 (PDT) Received: (qmail 5366 invoked by uid 1001); 20 Aug 2000 16:16:28 -0000 Date: Sun, 20 Aug 2000 11:16:28 -0500 From: Erich Zigler To: freebsd-mobile@freebsd.org Subject: Simple Technology 16MB Compact Flash Card Message-ID: <20000820111627.A5271@superhero.org> Mail-Followup-To: Erich Zigler , freebsd-mobile@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Im currently using an IBM ThinkPad 600E. Everything is working fine except for my Simple Technology 16MB Compact Flash Card. Im using a Compact Flash -> PCMCIA Adaptor which has actually worked once or twice. But I cannot get it to work 100% of the time. I know my PCMCIA slots in my laptop are working fine, because I have not had one ounce of trouble with my NIC card. Aug 20 11:07:23 prydn /kernel: pccard: card inserted, slot 0 Aug 20 11:07:29 prydn pccardd[653]: No card in database for "(null)"("(null)") Is the error message I get on my 4.1-STABLE system. Here are the lines from my pccard.conf. (Im still using the one from 4.0-RELEASE). I have tried the one with 4.1-STABLE but with the exact same symptoms. # Simple Technology ata flash card "Simple Technology " "STI-ATA" config 0x2 "ata2" ? insert logger -t pccard:$device -s Simple Technology ata FLASH inserted remove logger -t pccard:$device -s Simple Technology ata FLASH removed I even actually added a "null" "null" entry in the pccard.conf just for giggles. # Non-brand Compact Flash Card card "(null)" "(null)" config 0x1 "ata2" ? iosize 16 insert logger -t pccard:$device -s Compact Flash Card inserted remove logger -t pccard:$device -s Compact Flash Card removed No dice. And this is the pccardc dumpcis output for the slot. Configuration data for card in slot 0 Tuple #1, code = 0xff (Terminator), length = 0 I did see several messages like this in the archive and on several different cards. But it seems we all have been running ThinkPads. Is this a ThinkPad issue or a FreeBSD one? And in all my searching I never actually found a resolution to these issues. If I'm wrong please point me to the proper emails. Oh just for continuity here is my dmesg output.... on pcic0 pccard1: on pcic0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A unknown: can't assign resources unknown0: at port 0-0xf,0x80-0x8f,0xc0-0xdf drq 4 on isa0 unknown1: at port 0x40-0x43 irq 0 on isa0 unknown2: at port 0x70-0x73 irq 8 on isa0 unknown3: at port 0x61 on isa0 unknown: can't assign resources unknown: can't assign resources unknown4: at port 0xf0-0xff irq 13 on isa0 unknown: can't assign resources unknown5: at port 0xcf8-0xcff on isa0 unknown6: at port 0x22,0x2e-0x2f,0x92,0xb2-0xb3,0x4d0-0x4d1,0x15e0-0x1 5ef,0xef00-0xefaf iomem 0-0x9ffff,0xf0000-0xfffff,0x100000-0x7ffffff,0xffff0000- 0xffffffff on isa0 unknown7: at port 0x3bc-0x3bf irq 7 on isa0 unknown: can't assign resources pcm1: at port 0x530-0x537,0x388-0x38b,0x220-0x233 irq 5 drq 1,0 on isa0 unknown8: at port 0x538-0x53f on isa0 unknown9: at port 0x200-0x207 on isa0 unknown: can't assign resources unknown: can't assign resources unknown11: at port 0x3e1-0x3e2 on isa0 unknown: can't assign resources unknown12: on isa0 unknown: can't assign resources ad0: 6149MB [13328/15/63] at ata0-master using UDMA33 acd0: CDROM at ata0-slave using PIO4 Mounting root from ufs:/dev/ad0s1a -- Erich Zigler Sr. System Administrator To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 9:53:24 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from calcaphon.demon.co.uk (calcaphon.demon.co.uk [193.237.19.5]) by hub.freebsd.org (Postfix) with ESMTP id C50F837B424 for ; Sun, 20 Aug 2000 09:52:50 -0700 (PDT) Received: from henny.webweaving.org (henny.qubesoft.com [192.168.1.5]) by calcaphon.demon.co.uk (8.9.3/8.9.1) with ESMTP id RAA44030; Sun, 20 Aug 2000 17:52:34 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Received: from localhost (localhost [127.0.0.1]) by henny.webweaving.org (8.9.3/8.9.3) with ESMTP id RAA44318; Sun, 20 Aug 2000 17:51:18 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Date: Sun, 20 Aug 2000 17:51:18 +0100 (BST) From: Nick Hibma X-Sender: n_hibma@henny.webweaving.org Reply-To: Nick Hibma To: "H.Paul Hammann" Cc: mobile@FreeBSD.org Subject: Re: USB for dummies In-Reply-To: <14749.61193.564281.80595@elvis.mu.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 have a broken BIOS that does not assign resources to the USB controller properly. This is not a problem of FreeBSD. There is a patch available on http://www.etla.net/~n_hibma/usb/usb.pl but this patch is controversial as it hacks around it the main issue which is lack of initialisation. Nick On Fri, 18 Aug 2000, H.Paul Hammann wrote: > > I'm running FreeBSD 4.x-STABLE on an HP OmniBook 900 as of a week > or so ago. Recently I tried to get the USB daemon running. I'm > having some problems as I describe below. If there's any > documentation I'm missing, please point me to it. If anyone has an > idea what I can change to make this work, I would greatly appreciate > any helpful advice. Thanks a bunch for any help. > > When I boot I get the following errors: > > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > module_register: module usb/uhub already exists! > linker_file_sysinit "usb.ko" failed to register! 17 > module_register: module uhub/uhub already exists! > linker_file_sysinit "usb.ko" failed to register! 17 > module_register: module ohci/usb already exists! > linker_file_sysinit "usb.ko" failed to register! 17 > module_register: module uhci/usb already exists! > linker_file_sysinit "usb.ko" failed to register! 17 > module_register: module pci/uhci already exists! > linker_file_sysinit "usb.ko" failed to register! 17 > module_register: module pci/ohci already exists! > linker_file_sysinit "usb.ko" failed to register! 17 > uhci0: irq 10 at device 7.2 > on pci0 > uhci0: Could not map ports > device_probe_and_attach: uhci0 attach returned 6 > uhci0: irq 10 at device 7.2 > on pci0 > uhci0: Could not map ports > device_probe_and_attach: uhci0 attach returned 6 > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > > When I try to run usbd manually I get: > > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > No USB host controllers found > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > > > I have the following options in my kernel config file: > > device uhci > device ohci > device usb > device ukbd > device ums > options KBD_INSTALL_CDEV > > > I have the following devices made: > > crw------- 1 root wheel 112, 0 Aug 18 16:16 /dev/kbd0 > crw------- 1 root wheel 112, 1 Aug 18 16:16 /dev/kbd1 > crw------- 1 root wheel 111, 0 Aug 18 16:18 /dev/ums0 > crw-rw---- 1 root operator 108, 255 Jul 25 21:12 /dev/usb > crw-rw---- 1 root operator 108, 0 Aug 18 18:11 /dev/usb0 > > > > Regards, > > H. Paul Hammann > hpaul@hammann.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-mobile" in the body of the message > -- Qube Software, Ltd. Private: n_hibma@qubesoft.com n_hibma@webweaving.org n_hibma@freebsd.org http://www.qubesoft.com/ http://www.etla.net/~n_hibma/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 10:35:23 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from dreamwvr.com (24.64.29.64.ab.wave.home.com [24.64.29.64]) by hub.freebsd.org (Postfix) with ESMTP id 67CBF37B423 for ; Sun, 20 Aug 2000 10:35:21 -0700 (PDT) Received: from tyr.dreamwvr.com (unknown [192.168.26.101]) by dreamwvr.com (Postfix) with SMTP id CC7723486 for ; Sun, 20 Aug 2000 11:35:18 -0600 (MDT) From: dreamwvr To: freebsd-mobile@freebsd.org Subject: IBM A20m any issues Date: Sun, 20 Aug 2000 11:58:36 -0600 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain References: <20000820111627.A5271@superhero.org> In-Reply-To: <20000820111627.A5271@superhero.org> MIME-Version: 1.0 Message-Id: <00082012032603.08161@tyr.dreamwvr.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, will be purchasing a IBM A20m coming up and wanted to know if there were any gotchas that completely hoop you IYKWIM. from what i understand the mini PCI 56k modem that comes with it is a winmodem which means that it won't work. Which PCMCIA cards do work flawlessly with FreeBSD 3.3 and 4.0? would be interested so am ahead of the game rather than a second trip to the parts store IYKWIM.. TIA dreamwvr@dreamwvr.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 11: 1:56 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from whizzo.transsys.com (whizzo.TransSys.COM [144.202.42.10]) by hub.freebsd.org (Postfix) with ESMTP id F012E37B43C for ; Sun, 20 Aug 2000 11:01:53 -0700 (PDT) Received: from whizzo.transsys.com (localhost.transsys.com [127.0.0.1]) by whizzo.transsys.com (8.11.0/8.11.0) with ESMTP id e7KI1p656104; Sun, 20 Aug 2000 14:01:51 -0400 (EDT) (envelope-from louie@whizzo.transsys.com) Message-Id: <200008201801.e7KI1p656104@whizzo.transsys.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Nick Hibma Cc: "H.Paul Hammann" , mobile@FreeBSD.ORG X-Image-URL: http://www.transsys.com/louie/images/louie-mail.jpg From: "Louis A. Mamakos" Subject: Re: USB for dummies References: In-reply-to: Your message of "Sun, 20 Aug 2000 17:51:18 BST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 20 Aug 2000 14:01:51 -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > You have a broken BIOS that does not assign resources to the USB > controller properly. This is not a problem of FreeBSD. > > There is a patch available on > > http://www.etla.net/~n_hibma/usb/usb.pl > > but this patch is controversial as it hacks around it the main issue > which is lack of initialisation. > > Nick This might be completely inapplicable, but here's a bit of trivia for you. In the course of playing around with USB on one of my systems, I managed to break the on-board controller (the @$&*!! pinouts for the USB connectors on the panel are not standard!). So, I went and purchased a PCI OHCI-based USB interface, which I'm using now. If figured that since the on-board USB is busted, I'd disable support for it in the BIOS, hoping to free up an IRQ in the process. The effect of selecting that kept the BIOS from configuring *ALL* the USB controllers, included the one on the PCI bus, rather than the on-board one only. So, there may be some merit in screwing around with the relevent BIOS configuration knobs if that hasn't been done already. louie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 12:29:21 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from wilson.acpub.duke.edu (wilson.acpub.duke.edu [152.3.233.69]) by hub.freebsd.org (Postfix) with ESMTP id 7624F37B443 for ; Sun, 20 Aug 2000 12:29:18 -0700 (PDT) Received: from bobzilla.adsl.duke.edu (bobzilla.adsl.duke.edu [152.16.67.15]) by wilson.acpub.duke.edu (8.9.3/8.9.3/Duke-5.0.0) with ESMTP id PAA10393; Sun, 20 Aug 2000 15:29:12 -0400 (EDT) Received: (from sto@localhost) by bobzilla.adsl.duke.edu (8.9.3/8.9.3) id PAA01609; Sun, 20 Aug 2000 15:29:09 -0400 (EDT) (envelope-from sto) Date: Sun, 20 Aug 2000 15:29:09 -0400 From: "Sean O'Connell" To: David Calkins Cc: FreeBSD mobile Subject: Re: PCMCIA network card Message-ID: <20000820152909.A1572@stat.Duke.EDU> Reply-To: "Sean O'Connell" References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from david_calkins@hotmail.com on Sun, Aug 20, 2000 at 08:22:19AM -0400 X-Organization: House of Schmutzli X-Kitties: Bitty Maya CJ Keisha Jacob Hopey X-Hound: Bob X-OS-of-Choice: FreeBSD Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org David Calkins stated: : I am trying to setup FreeBSD 4 on my laptop. I have a LinkSys EC2T PCMCIA : network card. After doing some digging I learned that I should be able to : use the 'ed' driver since my card is compatible with the NE2000. : : I've tried many different kernel configurations, with no success. Most : examples deal with isa network cards. : : If anyone has this working, I would appreciate it if you could send the : appropriate lines of your kernel config file so I can figure out the format : and args. obviously the specific resources wouldn't match, but it would : help me. David- This card should just work. Although, it is hard to tell waht is going on without any additional information from you. Of particular interest are 1) dmesg output Look to see if you have any irq issues and what the exact version of FreeBSD you are using (4.0-RELEASE, 4.0-STABLE, 4.1-RELEASE, etc) 2) kernel config See if things are done OK. I recommend the following settings: options PNPBIOS # PCCARD support in polling mode (to free up an irq) device card device pcic0 at isa? # NE2000 clones device ed (this will allow it to be probed as ed0) 3) rc.conf settings pccardd_flags="" pccard_enable="YES" pccard_ifconfig="DHCP" or pccard_ifconfig="inet abc.def.ghi.jkl netmask 255.255.255.0" sysinstall sometimes gives bad choices with regard to pccardd_flags. You shoud add "-i X -i Y -i Z" where X, Y, Z are free IRQ's that you wish to be used for pccards (this overrides the irq entries in /etc/defaults/pccard.conf). Hope this helps, S -- 1--------01---------01--------01--------01--------01--------01--------0 Sean O'Connell sean@stat.Duke.EDU To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 12:56:28 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from dreamwvr.com (24.64.29.64.ab.wave.home.com [24.64.29.64]) by hub.freebsd.org (Postfix) with ESMTP id C3F8B37B43F for ; Sun, 20 Aug 2000 12:56:26 -0700 (PDT) Received: from tyr.dreamwvr.com (unknown [192.168.26.101]) by dreamwvr.com (Postfix) with SMTP id 0319A3486; Sun, 20 Aug 2000 13:56:24 -0600 (MDT) From: dreamwvr To: "Sean O'Connell" , "Sean O'Connell" , David Calkins Subject: Re: PCMCIA network card Date: Sun, 20 Aug 2000 14:18:38 -0600 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain Cc: FreeBSD mobile References: <20000820152909.A1572@stat.Duke.EDU> In-Reply-To: <20000820152909.A1572@stat.Duke.EDU> MIME-Version: 1.0 Message-Id: <00082014243305.08161@tyr.dreamwvr.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, This monday i am planning to purchase a IBM A20m laptop.. since i have never actually owned a laptop nose being glued to a workstation for pretty much 24/7 i am a little uncertain of what PCMCIA cards from IBM 'will work' for combo 56k and 10/100 eth? how about 3com and Xircom reason being is i am in a bit of a bind() ;-/) will need to get it working for some roving work by friday or this upcoming week. therefore wanted to be certain to obtain the correct infos prior to installation to make it as seamless as possible. Appreciate all insights and suggestions:-)) TIA dreamwvr@dreamwvr.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 13:50:39 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from scribe.cc.purdue.edu (scribe.cc.purdue.edu [128.210.11.6]) by hub.freebsd.org (Postfix) with ESMTP id 3424A37B424 for ; Sun, 20 Aug 2000 13:50:37 -0700 (PDT) Received: from [128.211.209.78] by scribe.cc.purdue.edu with ESMTP; Sat, 19 Aug 2000 12:42:49 -0500 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 0267D195E; Sat, 19 Aug 2000 12:38:01 -0500 (EST) Date: Sat, 19 Aug 2000 12:38:00 -0500 From: Will Andrews To: Warner Losh Cc: Will Andrews , mobile@FreeBSD.ORG Subject: Re: your mail Message-Id: <20000819123800.V445@argon.gryphonsoft.com> Mail-Followup-To: Warner Losh , Will Andrews , mobile@FreeBSD.ORG References: <20000818021559.A434@argon.gryphonsoft.com> <200008191736.LAA27827@billy-club.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008191736.LAA27827@billy-club.village.org>; from imp@village.org on Sat, Aug 19, 2000 at 11:36:26AM -0600 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Aug 19, 2000 at 11:36:26AM -0600, Warner Losh wrote: > In message <20000818021559.A434@argon.gryphonsoft.com> Will Andrews writes: > What does boot verbose (boot -v) have to say? Nothing before ep0 is recognized, and then just "bpf at ep0" right after the null MAC address is displayed, and then a freeze. -- 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 Sun Aug 20 18:15:44 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.prod.itd.earthlink.net [207.217.121.50]) by hub.freebsd.org (Postfix) with ESMTP id 4D29437B423 for ; Sun, 20 Aug 2000 18:15:43 -0700 (PDT) Received: from rune (ip190.toronto45.dialup.canada.psi.net [154.5.95.190]) by avocet.prod.itd.earthlink.net (8.9.3-EL_1_3/8.9.3) with SMTP id SAA17726 for ; Sun, 20 Aug 2000 18:15:42 -0700 (PDT) From: "Arun Welch" To: Subject: Baystack 660 802.11 card Date: Sun, 20 Aug 2000 20:15:19 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.3018.1300 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Anyone know what it takes to get this working with 4.1-s? ...arun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 19:25:20 2000 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 1311237B42C for ; Sun, 20 Aug 2000 19:25:18 -0700 (PDT) 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 UAA51096; Sun, 20 Aug 2000 20:25:16 -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 UAA35527; Sun, 20 Aug 2000 20:24:15 -0600 (MDT) Message-Id: <200008210224.UAA35527@harmony.village.org> To: Will Andrews Subject: Re: your mail Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Sat, 19 Aug 2000 12:38:00 CDT." <20000819123800.V445@argon.gryphonsoft.com> References: <20000819123800.V445@argon.gryphonsoft.com> <20000818021559.A434@argon.gryphonsoft.com> <200008191736.LAA27827@billy-club.village.org> Date: Sun, 20 Aug 2000 20:24:15 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000819123800.V445@argon.gryphonsoft.com> Will Andrews writes: : Nothing before ep0 is recognized, and then just "bpf at ep0" right : after the null MAC address is displayed, and then a freeze. Odd. I've only seen this in one, unsupported card :-(. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 19:29:50 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from moek.pir.net (moek.pir.net [209.192.237.190]) by hub.freebsd.org (Postfix) with ESMTP id D4A6C37B423 for ; Sun, 20 Aug 2000 19:29:48 -0700 (PDT) Received: from pir by moek.pir.net with local (Exim) id 13QhLJ-00036i-00 for freebsd-mobile@freebsd.org; Sun, 20 Aug 2000 22:29:41 -0400 Date: Sun, 20 Aug 2000 22:29:41 -0400 From: Peter Radcliffe To: freebsd-mobile@freebsd.org Subject: Re: Baystack 660 802.11 card Message-ID: <20000820222941.A10911@pir.net> Mail-Followup-To: freebsd-mobile@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from welch@anzus.com on Sun, Aug 20, 2000 at 08:15:19PM -0500 X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Arun Welch probably said: > Anyone know what it takes to get this working with 4.1-s? I think these cards may well just be OEM lucent wavelan cards - try it with the wi driver ? P. -- pir pir@pir.net pir@net.tufts.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 19:32:17 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mailout1-1.nyroc.rr.com (mailout1-1.nyroc.rr.com [24.92.226.146]) by hub.freebsd.org (Postfix) with ESMTP id 2F0CD37B43C for ; Sun, 20 Aug 2000 19:32:09 -0700 (PDT) Received: from mail1.twcny.rr.com (mail1-0 [24.92.226.74]) by mailout1-1.nyroc.rr.com (8.9.3/8.9.3) with ESMTP id WAA09349; Sun, 20 Aug 2000 22:29:28 -0400 (EDT) Received: from voodoo.minix.cx ([24.169.74.77]) by mail1.twcny.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-53939U80000L80000S0V35) with ESMTP id com; Sun, 20 Aug 2000 22:29:33 -0400 Received: by voodoo.minix.cx (Postfix, from userid 1000) id 857352686; Sun, 20 Aug 2000 21:22:28 -0500 (EST) Date: Sun, 20 Aug 2000 21:22:27 -0500 From: Jonathan Towne To: Warner Losh Cc: mobile@FreeBSD.org Subject: Re: NEWCARD quick update Message-ID: <20000820212227.A9717@minix.cx> References: <200008192147.PAA29658@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200008192147.PAA29658@harmony.village.org>; from imp@village.org on Sat, Aug 19, 2000 at 03:47:44PM -0600 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Aug 19, 2000 at 03:47:44PM -0600, Warner Losh scribbled: # # OK. I have the infrastructure issues in NEWCARD dealt with. I'm not # probing (but failing) devices. I'm about to embark on updating # drivers to the NEWCARD regeim in an OLDCARD compatible way. I'll do # the sn driver first and commit those changes as an example. The sn # driver may be a little unstable as a result. It is likely the least # widely used drivers, which is why I picked it. There are still some # userland interaction issues that need to be addressed, as well as a # possible kernel linker bug that needs fixing, but I've made some good # progerss in the last few days. Wait, will the sn driver now work .. alongside sio for multifunction cards? (When re-stabilized and finished being ported, of course?) *crossing of fingers* - Jonathan Towne To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 19:35:53 2000 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 8FBA937B422 for ; Sun, 20 Aug 2000 19:35:50 -0700 (PDT) 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 UAA51182; Sun, 20 Aug 2000 20:35: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 UAA35703; Sun, 20 Aug 2000 20:34:48 -0600 (MDT) Message-Id: <200008210234.UAA35703@harmony.village.org> To: Jonathan Towne Subject: Re: NEWCARD quick update Cc: mobile@FreeBSD.org In-reply-to: Your message of "Sun, 20 Aug 2000 21:22:27 CDT." <20000820212227.A9717@minix.cx> References: <20000820212227.A9717@minix.cx> <200008192147.PAA29658@harmony.village.org> Date: Sun, 20 Aug 2000 20:34:48 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000820212227.A9717@minix.cx> Jonathan Towne writes: : Wait, will the sn driver now work .. alongside sio for multifunction : cards? (When re-stabilized and finished being ported, of course?) The sn driver is for a few Megahertz pcmcia cards made a long time ago. I don't think there are more than 10 in the whole world deployed at this time. None of them have a builtin modem, afaik. The multi-function cards should be much better supported, assuming that I didn't do stupid things to the NEWCARD code in porting it (and I can think of a couple of places I might have done just that, but they are on my list to test). sn works today in OLDCARD and should work in NEWCARD soon w/o breaking oldcard support. I'm trying to not have another massive flag day for OLDCARD drivers like we had 3.x -> 4.0 (which was extremely hard to avoid given the nature of the changes to the config system). Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 20:49: 0 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.gulp.org (mail.gulp.org [204.245.54.134]) by hub.freebsd.org (Postfix) with ESMTP id 0924337B422 for ; Sun, 20 Aug 2000 20:48:55 -0700 (PDT) Received: (from scarter@localhost) by mail.gulp.org (8.9.3/8.9.3) id UAA78872 for freebsd-mobile@FreeBSD.ORG; Sun, 20 Aug 2000 20:48:53 -0700 (MST) (envelope-from scarter@gblx.net) X-Authentication-Warning: mail.gulp.org: scarter set sender to scarter@gblx.net using -f Date: Sun, 20 Aug 2000 20:48:53 -0700 From: Steve Carter To: freebsd-mobile@FreeBSD.ORG Subject: Re: Baystack 660 802.11 card Message-ID: <20000820204853.A78812@gblx.net> References: <20000820222941.A10911@pir.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000820222941.A10911@pir.net>; from pir@pir.net on Sun, Aug 20, 2000 at 10:29:41PM -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Peter Radcliffe [000820 19:29]: > Arun Welch probably said: > > Anyone know what it takes to get this working with 4.1-s? > > I think these cards may well just be OEM lucent wavelan cards - try > it with the wi driver ? If it's the same as the one I have (BayStack 650 Wireless PC Card) then you'll need the awi driver. Don't expect the drivers to work reliably, because they won't (leastways w/ 3.5-Stable). My understanding is that Bay Networks have discontinued the product ... I recently 'upgraded' by purchasing the Lucent WaveLAN AP w/ the WaveLAN Turbo 11 Gold cards. These work well and I recommend them. -Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 21: 8:12 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hotmail.com (f115.law9.hotmail.com [64.4.9.115]) by hub.freebsd.org (Postfix) with ESMTP id 135A337B422 for ; Sun, 20 Aug 2000 21:07:58 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 20 Aug 2000 21:07:57 -0700 Received: from 63.195.114.87 by lw9fd.law9.hotmail.msn.com with HTTP; Mon, 21 Aug 2000 GMT X-Originating-IP: [63.195.114.87] From: "Greg Smith" To: freebsd-mobile@freebsd.org Subject: Winbook FX w/ Cirrus 5729/5730 PCIC + FreeBSD 4.1R = SOL ? Date: Mon, 21 Aug 2000 04:07:57 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 21 Aug 2000 04:07:57.0970 (UTC) FILETIME=[63A30F20:01C00B25] Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I recently installed FreeBSD 4.1-Release on a Winbook FX (P133, 32MB, 2GB). The machine now can dual-boot win95 or FreeBSD. The installation went fine, but I get the following errors: pccardd: "fatal error: no PC-CARD slots" pccardc: "/dev/card0: Device not configured" I have tried various changes to various files that I have gleaned from searching the last few years of this mailing list, but to no avail: I swapped the device card and device pcic statements; I tried the option PNPBIOS statement; I moved the sound card from IRQ10 to IRQ5 in BIOS; I altered the BIOS to support PNP or non-PNP OS; I adjusted the generally available IRQ and IO in pccard.conf, etc. I'm not sure what else to do, or if this setup will even work with 4.1R. I saved copies of the various files that should show the problem, for many of the permutations, and merged them together with highlighting of what varied across experiments. The lines which varied are all bracketed with lines starting with ===. I would appreciate any hints or advice. And please let me know if this is doomed, because I might be able to get a Winbook XL which has a TI PCI-1131 CardBus Controller instead. Or in the worst case a Winbook XP5 with the Vadem 469 chip and ISA bus I believe. Thanks in advance for considering this. Greg Smith --- config ---- machine i386 cpu I586_CPU ident MINE maxusers 02 === the following 1 line is present with PNPBIOS in config options PNPBIOS === end diff === the following 1 line is present without PNPBIOS in config #!options PNPBIOS === end diff : lines removed : device isa #!device eisa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata1 at isa? port IO_WD2 irq 15 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives options ATA_STATIC_ID #Static device numbering # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 options PSM_HOOKRESUME #hook the system resume event, useful #for some laptops options PSM_RESETAFTERSUSPEND #reset the device at the resume event device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 options SC_NORM_ATTR="(FG_GREEN|BG_BLACK)" options SC_NORM_REV_ATTR="(FG_YELLOW|BG_GREEN)" options SC_KERNEL_CONS_ATTR="(FG_RED|BG_BLACK)" options SC_KERNEL_CONS_REV_ATTR="(FG_BLACK|BG_RED)" options SC_TWOBUTTON_MOUSE # paste text with right mouse button # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) device apm0 at nexus? disable flags 0x20 # Advanced Power Management # PCCARD (PCMCIA) support device card device pcic0 at isa? options PCIC_RESUME_RESET # reset cards after resume # Serial (COM) ports device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device md # Memory "disks" pseudo-device gif 4 # IPv6 and IPv4 tunneling pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) # PCMCIA Ethernet Adaptors device ed # NE2000 compatible, e.g. LinkSys EC2T device ep # 3Com 3C589x # Sound #!device pcm options INCLUDE_CONFIG_FILE # Include this file in kernel options IPFIREWALL #firewall using ipfw options IPFIREWALL_VERBOSE #print information about # dropped packets options IPFIREWALL_FORWARD #enable transparent proxy support options IPFIREWALL_VERBOSE_LIMIT=100 #limit verbosity #!options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default options IPV6FIREWALL #firewall for IPv6 options IPV6FIREWALL_VERBOSE options IPV6FIREWALL_VERBOSE_LIMIT=100 #!options IPV6FIREWALL_DEFAULT_TO_ACCEPT options IPDIVERT #divert sockets using ipfw options IPFILTER #ipfilter support options IPFILTER_LOG #ipfilter logging options IPSTEALTH #support for stealth forwarding #!options TCPDEBUG options TCP_DROP_SYNFIN #drop TCP packets with SYN+FIN options TCP_RESTRICT_RST #restrict emission of TCP RST options ICMP_BANDLIM #icmp error response bandwidth limiting #!options DUMMYNET #enable "dummynet" bandwidth limiter #!options BRIDGE #enable bridging between ethernet cards --- rc.conf --- # This file now contains just the overrides from /etc/defaults/rc.conf # please make all changes to this file. # -- sysinstall generated deltas -- # linux_enable="YES" moused_enable="YES" gateway_enable="YES" ############ my changes ############ swapfile="NO" # Set to name of swapfile if aux swapfile desired. apm_enable="YES" # Set to YES to enable APM BIOS functions (or NO). pccard_mem="DEFAULT" # If pccard_enable=YES, this is card memory address. pccard_beep="1" # pccard beep type. pccard_enable="YES" # Set to YES if you want to configure PCCARD devices. pccard_conf="/etc/pccard.conf" # pccardd(8) config file hostname="00.000.000.00" # Set this! firewall_enable="NO" # Set to YES to enable firewall functionality firewall_type="UNKNOWN" # Firewall type (see /etc/rc.firewall) natd_enable="NO" # Enable natd (if firewall_enable == YES). natd_interface="fxp0" # Public interface or IPaddress to use. log_in_vain="YES" # YES to log connects to ports w/o listeners. tcp_drop_synfin="YES" # Set to YES to drop TCP packets with SYN+FIN # NOTE: this violates the TCP specification tcp_restrict_rst="YES" # Set to YES to restrict emission of RST icmp_drop_redirect="YES" # Set to YES to ignore ICMP REDIRECT packets network_interfaces="auto" # List of network interfaces (or "auto"). ifconfig_lo0="inet 127.0.0.5" # default loopback device configuration. ifconfig_ed0_alias0="inet 00.000.000.00 netmask 0xffffffff" # ifconfig_ep0_alias0="inet 00.000.000.00 netmask 0xffffffff" # portmap_enable="NO" # Run the portmapper service (or NO). defaultrouter="00.000.000.000" # Set to default gateway (or NO). sendmail_enable="NO" # Run the sendmail daemon (or NO). --- pccard.conf --- # $FreeBSD: src/etc/defaults/pccard.conf,v 1.98.2.3 2000/07/19 12:58:12 sanpei Exp $ # Generally available IO ports io 0x240-0x360 # Generally available IRQs (Built-in sound-card owners remove 5) irq 5 9 11 # Available memory slots memory 0xd4000 96k ########## ata ########## # Integral Peripherals Viper HDD Series card "INTEGRAL PERIPHERALS" "ATA CARD" # config default "ata" ? config 0x01 "ata" ? iosize 16 ########## ed ########## # Kingston KNE-PC2 card "Kingston" "KNE-PC2" config default "ed" ? insert /etc/pccard_ether $device remove /sbin/ifconfig $device delete # Linksys Combo PCMCIA EthernetCard (model EC2T on box) card "Linksys" "Combo PCMCIA EthernetCard (EC2T)" config 0x1 "ed" ? insert /etc/pccard_ether $device remove /sbin/ifconfig $device delete ########## ep ########## # 3Com Etherlink III 3CXE589ET card "3Com" "Megahertz 589E" config 0x1 "ep" ? insert /etc/pccard_ether $device remove /sbin/ifconfig $device delete # 3Com Etherlink III 3C589B, 3C589C card "3Com Corporation" "3C589" config 0x1 "ep" ? # config auto "ep" ? insert /etc/pccard_ether $device -link0 link1 # insert /etc/pccard_ether $device link0 -link1 remove /sbin/ifconfig $device delete # 3Com Etherlink III 3C589D card "3Com Corporation" "3C589D" config 0x1 "ep" ? # config auto "ep" ? insert /etc/pccard_ether $device remove /sbin/ifconfig $device delete # ------------------------------------------------------------------- # # "Wildcard" entries # # ------------------------------------------------------------------- # GENERIC PCMCIA modem generic serial config auto "sio" ? reset 10000 # for unstable cards logstr "GENERIC PCMCIA modem" # GENERIC Flash ATA / ATA HDD generic fixed_disk config auto "ata" ? logstr "GENERIC Flash ATA / ATA HDD" --- dmesg ----- Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.1-RELEASE #0: Fri Aug 18 13:52:13 PDT 2000 root@00.000.000.00:/usr/src/sys/compile/MINEPNP Calibrating clock(s) ... TSC clock: 166056903 Hz, i8254 clock: 1192939 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method CPU: Pentium/P55C (166.09-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x544 Stepping = 4 Features=0x8001bf real memory = 33554432 (32768K bytes) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) === next 2 with BIOS setting sound to IRQ10 [non-PnP mode, no PNPBIOS] 0x002ea000 - 0x01ff7fff, 30466048 bytes (7438 pages) avail memory = 30003200 (29300K bytes) === end diff === next 2 with BIOS setting sound to IRQ5 [non-PnP mode, no PNPBIOS] 0x002eb000 - 0x01ff7fff, 30461952 bytes (7437 pages) avail memory = 29999104 (29296K bytes) === end diff bios32: Found BIOS32 Service Directory header at 0xc00fdb50 bios32: Entry = 0xf61a2 (c00f61a2) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0x2ae pnpbios: Found PnP BIOS data at 0xc00fdb60 pnpbios: Entry = f0000:5086 Rev = 1.0 pnpbios: Event flag at fd878 Other BIOS signatures found: ACPI: 00000000 === next 1 with BIOS setting sound to IRQ5 [non-PnP mode, no PNPBIOS] Preloaded elf kernel "kernel" at 0xc02d2000. === end diff Intel Pentium detected, installing workaround for F00F bug md0: Malloc disk Creating DISK md0 Math emulator present pci_open(1): mode 1 addr port (0x0cf8) is 0x800008d4 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=12358086) npx0: on motherboard npx0: INT 16 interface i586_bzero() bandwidth = 173792144 bytes/sec bzero() bandwidth = 653594771 bytes/sec pci_open(1): mode 1 addr port (0x0cf8) is 0x00000000 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=12358086) pcib0: on motherboard found-> vendor=0x8086, dev=0x1235, revid=0x02 class=06-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 found-> vendor=0x8086, dev=0x1234, revid=0x03 class=06-80-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 found-> vendor=0x100b, dev=0x0002, revid=0x01 class=01-01-8a, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=14 map[10]: type 1, range 32, base 000001f0, size 3 map[14]: type 1, range 32, base 000003f4, size 2 map[18]: type 1, range 32, base 00000170, size 3 map[1c]: type 1, range 32, base 00000374, size 2 map[20]: type 1, range 32, base 0000fff0, size 4 found-> vendor=0x1013, dev=0x1100, revid=0xee class=06-05-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 === next 1 with BIOS setting sound to IRQ10 [non-PnP mode, no PNPBIOS] intpin=a, irq=255 === end diff === next 1 with BIOS setting sound to IRQ5 [non-PnP mode, no PNPBIOS] intpin=a, irq=10 === end diff === next 1 with BIOS in non-PnP mode map[10]: type 3, range 32, base 0000fcec, size 2 === end diff found-> vendor=0x102c, dev=0x00e0, revid=0xc6 class=03-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[10]: type 1, range 32, base fd000000, size 24 pci0: on pcib0 chip1: at device 1.0 on pci0 atapci0: port 0xfff0-0xffff,0x374-0x377,0x170-0x177,0x3f4-0x3f7,0x1f0-0x1f7 irq 14 at device 5.0 on pci0 atapci0: Busmastering DMA not enabled ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0x0000 ata0: mask=03 status0=50 status1=00 ata0: mask=03 status0=50 status1=00 ata0: devices = 0x1 ata0: at 0x1f0 irq 14 on atapci0 ata1: iobase=0x0170 altiobase=0x0376 bmaddr=0x0001 ata1: mask=00 status0=ff status1=ff ata1: probe allocation failed === next 1 with BIOS in PnP mode pcic-pci0: at device 19.0 on pci0 === end diff === next 1 with BIOS in non-PnP mode pcic-pci0: port 0xfcec-0xfcef at device 19.0 on pci0 === end diff === next 1 with BIOS setting sound to IRQ5 [non-PnP mode, no PNPBIOS] pcic-pci0: port 0xfcec-0xfcef irq 10 at device 19.0 on pci0 === end diff pcic-pci0: Legacy address set to 0 PCI Config space: 00: 11001013 04000083 060500ee 00000000 10: 0000fced 00000000 00000000 00000000 20: 00000000 00000000 00000000 00000000 === next 1 with BIOS setting sound to IRQ10 [all] 30: 00000000 00000000 00000000 000001ff === end diff === next 1 with BIOS setting sound to IRQ5 [non-PnP mode, no PNPBIOS] 30: 00000000 00000000 00000000 0000010a === end diff 40: 00000000 00000000 00000000 00000000 50: 00000000 00000000 00000000 00000000 60: 00000000 00000000 00000000 00000000 70: 00000000 00000000 00000000 00000000 80: 00000000 00000000 00000000 00000000 90: 00000000 00000000 00000000 00000000 Cardbus Socket registers: === next 2 with BIOS setting sound to IRQ10 [all] 00: 00000000: 00000000: 00000000: 00000000: 10: 00000000: 00000000: 00000000: 00000000: === end diff === next 2 with BIOS setting sound to IRQ5 [non-PnP mode, no PNPBIOS] 00: 000000e5: 01cb4968: 256de800: c4830001: 10: 087d8310: 831a7500: ca68fcc4: 680001cb: === end diff ExCa registers: === next 4 with PNPBIOS in config 00: 65 74 5f 6c 75 6e 00 64 65 66 72 74 72 6c 69 73 10: 74 5f 64 65 6c 00 76 6d 5f 6d 61 70 5f 73 74 61 20: 72 74 75 70 00 76 6f 70 5f 73 74 72 61 74 65 67 30: 79 5f 64 65 73 63 00 76 6f 70 5f 69 73 6c 6f 63 === end diff === next 4 without PNPBIOS in config 00: 65 74 69 5f 69 72 65 74 5f 66 61 75 6c 74 00 6f 10: 73 69 67 72 65 74 75 72 6e 00 61 6c 6c 6f 63 62 20: 75 66 00 73 6f 63 61 6e 74 73 65 6e 64 6d 6f 72 30: 65 00 76 6f 70 5f 72 65 76 6f 6b 65 5f 64 65 73 === end diff === next 4 with BIOS setting sound to IRQ5 [non-PnP mode, no PNPBIOS] 00: 52 50 8b 55 08 52 e8 54 01 00 00 89 c6 8b 45 08 10: 8b 38 89 78 04 83 c4 f8 8b 45 0c 8b 55 10 52 50 20: e8 e6 05 00 00 66 89 47 04 8b 55 14 89 57 0c 88 30: d8 0c 04 88 47 06 8a 55 0c 88 57 07 89 77 08 8d === end diff pci0: (vendor=0x102c, dev=0x00e0) at 20.0 isa0: on motherboard === next 93 with PNPBIOS in config pnpbios: 19 devices, largest 131 bytes ESS1878: adding dma mask 0x2 ESS1878: adding dma mask 0x8 ESS1878: adding irq mask 0x400 ESS1878: adding io range 0x220-0x22f, size=0x10, align=0x10 ESS1878: adding io range 0x388-0x38b, size=0x4, align=0x8 ESS1878: adding io range 0x330-0x331, size=0x2, align=0x10 ESS1878: end config pnpbios: handle 0 device ID ESS1878 (78187316) ESS0005: adding io range 0x201-0x201, size=0x1, align=0 ESS0005: end config pnpbios: handle 1 device ID ESS0005 (05007316) ESS0004: adding io range 0x800-0x807, size=0x8, align=0x10 ESS0004: end config pnpbios: handle 2 device ID ESS0004 (04007316) PNP0a03: adding io range 0xcf8-0xcfb, size=0x4, align=0 PNP0a03: adding io range 0xcfc-0xcff, size=0x4, align=0 PNP0a03: end config pnpbios: handle 3 device ID PNP0a03 (030ad041) PNP0800: adding io range 0x61-0x61, size=0x1, align=0 PNP0800: end config pnpbios: handle 4 device ID PNP0800 (0008d041) PNP0c01: adding memory range 0-0x9ffff, size=0xa0000, align=0 PNP0c01: adding memory range 0xe0000-0xfffff, size=0x20000, align=0 PNP0c01: adding fixed memory32 range 0x100000-0x50fffff, size=0x5000000 PNP0c01: end config pnpbios: handle 5 device ID PNP0c01 (010cd041) PNP0c02: adding io range 0x80-0x80, size=0x1, align=0x1 PNP0c02: adding io range 0x4d0-0x4d1, size=0x2, align=0x1 PNP0c02: adding io range 0xb2-0xb3, size=0x2, align=0x1 PNP0c02: adding io range 0x74-0x75, size=0x2, align=0x1 PNP0c02: adding io range 0x398-0x399, size=0x2, align=0x1 PNP0c02: adding io range 0x373-0x373, size=0x1, align=0x1 PNP0c02: adding fixed memory32 range 0xfffe0000-0xffffffff, size=0x20000 PNP0c02: adding fixed memory32 range 0xcb000-0xcbfff, size=0x1000 PNP0c02: adding fixed memory32 range 0xd0000-0xd07ff, size=0x800 PNP0c02: end config pnpbios: handle 6 device ID PNP0c02 (020cd041) PNP0303: adding io range 0x60-0x60, size=0x1, align=0 PNP0303: adding io range 0x64-0x64, size=0x1, align=0 PNP0303: adding irq mask 00x2 PNP0303: end config pnpbios: handle 7 device ID PNP0303 (0303d041) PNP0c04: adding io range 0xf0-0xff, size=0x10, align=0 PNP0c04: adding irq mask 0x2000 PNP0c04: end config pnpbios: handle 8 device ID PNP0c04 (040cd041) PNP0f13: adding irq mask 0x1000 PNP0f13: end config pnpbios: handle 9 device ID PNP0f13 (130fd041) PNP0200: adding io range 0-0xf, size=0x10, align=0 PNP0200: adding io range 0x81-0x8f, size=0xf, align=0 PNP0200: adding io range 0xc0-0xdf, size=0x20, align=0 PNP0200: adding dma mask 0x10 PNP0200: end config pnpbios: handle 11 device ID PNP0200 (0002d041) PNP0000: adding io range 0x20-0x21, size=0x2, align=0 PNP0000: adding io range 0xa0-0xa1, size=0x2, align=0 PNP0000: adding irq mask 00x4 PNP0000: end config pnpbios: handle 12 device ID PNP0000 (0000d041) PNP0100: adding io range 0x40-0x43, size=0x4, align=0 PNP0100: adding irq mask 00x1 PNP0100: end config pnpbios: handle 13 device ID PNP0100 (0001d041) PNP0b00: adding io range 0x70-0x71, size=0x2, align=0 PNP0b00: adding irq mask 0x100 PNP0b00: end config pnpbios: handle 14 device ID PNP0b00 (000bd041) PNP0501: adding io range 0x3f8-0x3ff, size=0x8, align=0 PNP0501: adding irq mask 0x10 PNP0501: end config pnpbios: handle 15 device ID PNP0501 (0105d041) PUM0000: adding io range 0x3e8-0x3ef, size=0x8, align=0 PUM0000: adding irq mask 0x10 PUM0000: adding dma mask 0x1 PUM0000: end config pnpbios: handle 16 device ID PUM0000 (0000ad42) QCI0100: adding io range 0x2f8-0x2ff, size=0x8, align=0 QCI0100: adding irq mask 00x8 QCI0100: end config pnpbios: handle 17 device ID QCI0100 (00016944) PNP0400: adding io range 0x378-0x37f, size=0x8, align=0 PNP0400: adding io range 0x778-0x77a, size=0x3, align=0 PNP0400: adding irq mask 0x80 PNP0400: end config pnpbios: handle 18 device ID PNP0400 (0004d041) PNP0700: adding dma mask 0x4 PNP0700: adding io range 0x3f0-0x3f5, size=0x6, align=0 PNP0700: adding io range 0x3f7-0x3f7, size=0x1, align=0 PNP0700: adding irq mask 0x40 PNP0700: end config pnpbios: handle 19 device ID PNP0700 (0007d041) === end diff Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 ata-: ata0 exists, using next available unit number ata-: ata1 exists, using next available unit number isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ata3: iobase=0x0170 altiobase=0x0376 bmaddr=0x0000 ata3: mask=00 status0=ff status1=ff ata3: probe allocation failed atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0045 atkbd: keyboard ID 0x41ab (2) kbdc: RESET_KBD return code:00fa kbdc: RESET_KBD status:00aa kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x1, flags:0x3d0000 psm0: current command byte:0045 kbdc: TEST_AUX_PORT status:0000 kbdc: RESET_AUX return code:00fa kbdc: RESET_AUX status:00aa kbdc: RESET_AUX ID:0000 psm: status 00 02 64 psm: status 00 00 64 psm: status 00 03 64 psm: status 00 03 64 psm: data 08 00 00 psm: status 10 00 64 psm: status 00 02 64 psm: data 08 00 00 psm: status 00 02 64 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0-00, 2 buttons psm0: config:00006000, flags:00000000, packet size:3 psm0: syncmask:c0, syncbits:00 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 fb0: vga0, vga, type:VGA (5), flags:0x7007f fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000 fb0: init mode:24, bios mode:3, current mode:24 fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k VGA parameters upon power-up 50 18 10 00 00 01 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 07 80 9c 0e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 00 00 00 00 00 00 10 0e 00 ff VGA parameters in BIOS for mode 24 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff EGA/VGA parameters to be used for mode 24 50 18 10 00 00 01 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 07 80 9c 0e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 00 00 00 00 00 00 10 0e 00 ff sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) sio0: irq maps: 0x41 0x51 0x41 0x41 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: irq maps: 0x41 0x49 0x41 0x41 sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: parallel port found at 0x378 ppc0: using extended I/O port range ppc0: SPP ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode lpt0: on ppbus0 lpt0: Interrupt-driven port isa_probe_children: probing PnP devices === next 19 with PNPBIOS in config unknown0: at port 0x220-0x22f,0x388-0x38b,0x330-0x331 irq 10 drq 1,3 on isa0 unknown1: at port 0x201 on isa0 unknown2: at port 0x800-0x807 on isa0 unknown3: at port 0xcf8-0xcfb,0xcfc-0xcff on isa0 unknown4: at port 0x61 on isa0 unknown5: at iomem 0-0x9ffff,0xe0000-0xfffff, 0x100000-0x50fffff on isa0 unknown6: at port 0x80,0x4d0-0x4d1,0xb2-0xb3,0x74-0x75, 0x398-0x399,0x373 iomem 0xfffe0000-0xffffffff, 0xcb000-0xcbfff,0xd0000-0xd07ff on isa0 unknown: can't assign resources unknown7: at port 0xf0-0xff irq 13 on isa0 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown8: at port 0x40-0x43 irq 0 on isa0 unknown9: at port 0x70-0x71 irq 8 on isa0 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources === end diff BIOS Geometries: 0:02097f3f 0..521=522 cylinders, 0..127=128 heads, 1..63=63 sectors 0 accounted for Device configuration finished. IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to deny, logging limited to 100 packets/entry by default IPv6 packet filtering initialized, logging limited to 100 packets/entry IP Filter: v3.4.8 initialized. Default = pass all, Logging = enabled ad0: ATA-3 disk at ata0 as master ad0: 2061MB (4221504 sectors), 4188 cyls, 16 heads, 63 S/T, 512 B/S ad0: 16 secs/int, 1 depth queue, BIOSPIO ad0: piomode=4 dmamode=2 udmamode=-1 cblid=0 Creating DISK ad0 Creating DISK wd0 === next 1 with BIOS setting sound to IRQ10 [all] Mounting root from ufs:ad0s2a === end diff === next 1 with BIOS setting sound to IRQ5 [non-PnP mode, no PNPBIOS] Mounting root from ufs:/dev/ad0s2a === end diff ad0s1: type 0xb, start 63, end = 2048255, size 2048193 : OK ad0s2: type 0xa5, start 2048256, end = 4096511, size 2048256 : OK ad0s4: type 0xa0, start 4096512, end = 4209407, size 112896 : OK start_init: trying /sbin/init Linux-ELF exec handler installed --- win95 view --- ******************** IRQ SUMMARY ******************** 00 - System timer 01 - Standard 101/102-Key or Microsoft Natural Keyboard 02 - Programmable interrupt controller 03 - WinBook FX V.34i+ 04 - Generic Ir Serial Port (COM3) 04 - Communications Port (COM1) === next 1 with BIOS setting sound to IRQ5 [non-PnP or PnP mode] 05 - ES1878 Plug and Play AudioDrive === end diff 06 - Standard Floppy Disk Controller 07 - Printer Port (LPT1) 08 - System CMOS/real time clock === next 1 with BIOS setting sound to IRQ5 [non-PnP or PnP mode] 10 - IRQ Holder for PCI Steering === end diff === next 1 with BIOS setting sound to IRQ10 [non-PnP or PnP mode] 10 - ES1878 Plug and Play AudioDrive === end diff 11 - 3Com EtherLink III PCMCIA (3C589D) 12 - PS/2 Compatible Mouse Port 13 - Numeric data processor 14 - Intel 82371FB PCI Bus Master IDE Controller 14 - Primary IDE controller (single fifo) 15 - Intel 82371FB PCI Bus Master IDE Controller 15 - Secondary IDE controller (single fifo) ******************** IO PORT SUMMARY ******************** 0000h-000Fh - Direct memory access controller 0020h-0021h - Programmable interrupt controller 0040h-0043h - System timer 0060h-0060h - Standard 101/102-Key or Microsoft Natural Keyboard 0061h-0061h - System speaker 0064h-0064h - Standard 101/102-Key or Microsoft Natural Keyboard 0070h-0071h - System CMOS/real time clock 0074h-0075h - Motherboard resources 0080h-0080h - Motherboard resources 0081h-008Fh - Direct memory access controller 00A0h-00A1h - Programmable interrupt controller 00B2h-00B3h - Motherboard resources 00C0h-00DFh - Direct memory access controller 00F0h-00FFh - Numeric data processor === next 1 with BIOS in PnP mode 0104h-0107h - Cirrus Logic PCIC compatible PCI to PCMCIA bridge === end diff 0110h-011Fh - 3Com EtherLink III PCMCIA (3C589D) 0170h-0177h - Intel 82371FB PCI Bus Master IDE Controller 0170h-0177h - Secondary IDE controller (single fifo) 01F0h-01F7h - Intel 82371FB PCI Bus Master IDE Controller 01F0h-01F7h - Primary IDE controller (single fifo) 0201h-0201h - Gameport Joystick 0220h-022Fh - ES1878 Plug and Play AudioDrive 02F8h-02FFh - WinBook FX V.34i+ 0330h-0331h - ES1878 Plug and Play AudioDrive 0373h-0373h - Motherboard resources 0376h-0376h - Intel 82371FB PCI Bus Master IDE Controller 0376h-0376h - Secondary IDE controller (single fifo) 0378h-037Fh - Printer Port (LPT1) 0388h-038Bh - ES1878 Plug and Play AudioDrive 0398h-0399h - Motherboard resources 03B0h-03BBh - Chips & Technologies 65550 PCI 03C0h-03DFh - Chips & Technologies 65550 PCI 03E8h-03EFh - Generic Ir Serial Port (COM3) 03F0h-03F5h - Standard Floppy Disk Controller 03F6h-03F6h - Intel 82371FB PCI Bus Master IDE Controller 03F6h-03F6h - Primary IDE controller (single fifo) 03F7h-03F7h - Standard Floppy Disk Controller 03F8h-03FFh - Communications Port (COM1) 04D0h-04D1h - Motherboard resources 0778h-077Ah - Printer Port (LPT1) 0800h-0807h - ES1878 Control Interface 0CF8h-0CFBh - PCI bus 0CFCh-0CFFh - PCI bus === next 1 with BIOS in non-PnP mode FCECh-FCEFh - Cirrus Logic PCIC compatible PCI to PCMCIA bridge === end diff FFF0h-FFF7h - Intel 82371FB PCI Bus Master IDE Controller FFF0h-FFF7h - Primary IDE controller (single fifo) FFF8h-FFFFh - Intel 82371FB PCI Bus Master IDE Controller FFF8h-FFFFh - Secondary IDE controller (single fifo) ******************** UPPER MEMORY USAGE SUMMARY ******************** 00000000h-0009FFFFh - System board extension for PnP BIOS 000A0000h-000AFFFFh - Chips & Technologies 65550 PCI 000B0000h-000BFFFFh - Chips & Technologies 65550 PCI 000C0000h-000CAFFFh - Chips & Technologies 65550 PCI 000CB000h-000CBFFFh - Motherboard resources 000D0000h-000D07FFh - Motherboard resources 000E0000h-000FFFFFh - System board extension for PnP BIOS 00100000h-050FFFFFh - System board extension for PnP BIOS 05100000h-05100FFFh - PCMCIA Card Services FD000000h-FDFFFFFFh - Chips & Technologies 65550 PCI FFFE0000h-FFFFFFFFh - Motherboard resources ******************** DMA USAGE SUMMARY ******************** 00 - Generic Ir Serial Port (COM3) 01 - ES1878 Plug and Play AudioDrive 02 - Standard Floppy Disk Controller 03 - ES1878 Plug and Play AudioDrive 04 - Direct memory access controller ________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail 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 Sun Aug 20 21:50:21 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mailout1-1.nyroc.rr.com (mailout1-0.nyroc.rr.com [24.92.226.81]) by hub.freebsd.org (Postfix) with ESMTP id 3FDF837B424 for ; Sun, 20 Aug 2000 21:50:13 -0700 (PDT) Received: from mail1.twcny.rr.com (mail1-0 [24.92.226.74]) by mailout1-1.nyroc.rr.com (8.9.3/8.9.3) with ESMTP id AAA20890; Mon, 21 Aug 2000 00:47:33 -0400 (EDT) Received: from voodoo.minix.cx ([24.169.74.77]) by mail1.twcny.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-53939U80000L80000S0V35) with ESMTP id com; Mon, 21 Aug 2000 00:47:38 -0400 Received: by voodoo.minix.cx (Postfix, from userid 1000) id 68A132686; Sun, 20 Aug 2000 23:40:42 -0500 (EST) Date: Sun, 20 Aug 2000 23:40:41 -0500 From: Jonathan Towne To: Warner Losh Cc: mobile@Freebsd.Org Subject: Re: NEWCARD quick update Message-ID: <20000820234040.B9717@minix.cx> References: <20000820212227.A9717@minix.cx> <200008192147.PAA29658@harmony.village.org> <20000820212227.A9717@minix.cx> <200008210234.UAA35703@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200008210234.UAA35703@harmony.village.org>; from imp@village.org on Sun, Aug 20, 2000 at 08:34:48PM -0600 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Aug 20, 2000 at 08:34:48PM -0600, Warner Losh scribbled: # The sn driver is for a few Megahertz pcmcia cards made a long time # ago. I don't think there are more than 10 in the whole world deployed # at this time. None of them have a builtin modem, afaik. The # multi-function cards should be much better supported, assuming that I # didn't do stupid things to the NEWCARD code in porting it (and I can # think of a couple of places I might have done just that, but they are # on my list to test). Somehow I remember "smc91c92" being listed as supported under "sn".. My Ositech Trumpcard (JoH 56K+Ethernet) uses the linux driver for the smc91c92..and probes as such.. they're nice cards, aside from freebsd support, I recommend them.. it didn't take me too long to get it fully working (both modem and ethernet, at the same time) under linux. - Jonathan Towne To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 21:51:41 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from wilson.acpub.duke.edu (wilson.acpub.duke.edu [152.3.233.69]) by hub.freebsd.org (Postfix) with ESMTP id 6015737B422 for ; Sun, 20 Aug 2000 21:51:37 -0700 (PDT) Received: from bobzilla.adsl.duke.edu (bobzilla.adsl.duke.edu [152.16.67.15]) by wilson.acpub.duke.edu (8.9.3/8.9.3/Duke-5.0.0) with ESMTP id AAA18412; Mon, 21 Aug 2000 00:51:36 -0400 (EDT) Received: (from sto@localhost) by bobzilla.adsl.duke.edu (8.9.3/8.9.3) id AAA02722; Mon, 21 Aug 2000 00:51:32 -0400 (EDT) (envelope-from sto) Date: Mon, 21 Aug 2000 00:51:32 -0400 From: "Sean O'Connell" To: Greg Smith Cc: FreeBSD mobile Subject: Re: Winbook FX w/ Cirrus 5729/5730 PCIC + FreeBSD 4.1R = SOL ? Message-ID: <20000821005132.B2342@stat.Duke.EDU> Reply-To: "Sean O'Connell" References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from gregsmith59@hotmail.com on Mon, Aug 21, 2000 at 04:07:57AM +0000 X-Organization: House of Schmutzli X-Kitties: Bitty Maya CJ Keisha Jacob Hopey X-Hound: Bob X-OS-of-Choice: FreeBSD Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greg Smith stated: : Hi, : : I recently installed FreeBSD 4.1-Release on a Winbook FX (P133, 32MB, 2GB). : The machine now can dual-boot win95 or FreeBSD. The installation went fine, : but I get the following errors: : pccardd: "fatal error: no PC-CARD slots" : pccardc: "/dev/card0: Device not configured" It is not picking up the pcic in your machine ... do you know what your pcic is? I had to do the following to get a Winbook-LM to work (under 3.?) # PCIC device # - port is a bigtime hack (got from scanpci :) device pcic0 at isa? port 0xfcfc irq 11 Maybe this beast shares the same base hardware. You may want to use either pciconf -l or scanpci -v (scanpci is part of XFree86). Also, maybe the dmesg output from a verbose boot might shed some light on the setting for the pcic. You do mention Win95 .. what does the device mangler (er, manager) have to say about the pcic? Are there any settings for adjusting the behavior of the pcic? : I have tried various changes to various files that I have gleaned from : searching the last few years of this mailing list, but to no avail: I : swapped the device card and device pcic statements; I tried the option : PNPBIOS statement; I moved the sound card from IRQ10 to IRQ5 in BIOS; I : altered the BIOS to support PNP or non-PNP OS; I adjusted the generally : available IRQ and IO in pccard.conf, etc. I'm not sure what else to do, or : if this setup will even work with 4.1R. set BIOS to "non-PNP OS" leave in PNPBIOS as it will probably help with sound support leave sound at irq 5 (you should have more than enough on this beast between 3,9,10 .. reserve 11 for pcic ... we may need to try others) : --- config ---- : machine i386 : cpu I586_CPU : ident MINE : maxusers 02 maxusers 64 (this helps to size kernel tables and 2 is way to pessimal!) : === the following 1 line is present with PNPBIOS in config : options PNPBIOS leave this in ... : # ATA and ATAPI devices : device ata0 at isa? port IO_WD1 irq 14 : device ata1 at isa? port IO_WD2 irq 15 : device ata : device atadisk # ATA disk drives : device atapicd # ATAPI CDROM drives : device atapifd # ATAPI floppy drives : options ATA_STATIC_ID #Static device numbering You may be able to get away with just device ata and not the "device ata0 ..." and "device ata1..." : # syscons is the default console driver, resembling an SCO console : device sc0 at isa? flags 0x100 : options SC_NORM_ATTR="(FG_GREEN|BG_BLACK)" : options SC_NORM_REV_ATTR="(FG_YELLOW|BG_GREEN)" : options SC_KERNEL_CONS_ATTR="(FG_RED|BG_BLACK)" : options SC_KERNEL_CONS_REV_ATTR="(FG_BLACK|BG_RED)" : options SC_TWOBUTTON_MOUSE # paste text with right mouse button I am a big fan of ... :) options SC_NORM_ATTR="(FG_LIGHTGREY|BG_BLUE)" options SC_NORM_REV_ATTR="(FG_BLUE|BG_LIGHTGREY)" options SC_KERNEL_CONS_ATTR="(FG_BLUE|BG_BLACK)" options SC_KERNEL_CONS_REV_ATTR="(FG_BLACK|BG_BLUE)" : # Floating point support - do not disable. : device npx0 at nexus? port IO_NPX irq 13 : : # Power management support (see LINT for more options) : device apm0 at nexus? disable flags 0x20 # Advanced Power Management You can probably enable this ... device apm0 at nexus? (you may need the flags 0x20 ... but maybe not) : # PCCARD (PCMCIA) support : device card : device pcic0 at isa? : options PCIC_RESUME_RESET # reset cards after resume Try the following (you could try with irq 11): device card device pcic0 at isa? port 0xfcfc : # Serial (COM) ports : device sio0 at isa? port IO_COM1 flags 0x10 irq 4 : device sio1 at isa? port IO_COM2 irq 3 You could probably go with just: device sio when coupled with PNPBIOS option. : # PCMCIA Ethernet Adaptors : device ed # NE2000 compatible, e.g. LinkSys EC2T : device ep # 3Com 3C589x Pccard adapters look good. : # Sound : #!device pcm device pcm should just work assuming that freebsd as the relevant PNP id in the /sys/dev/sound/isa/{sbc or mss}.c : --- rc.conf --- : # This file now contains just the overrides from /etc/defaults/rc.conf : # please make all changes to this file. : : # -- sysinstall generated deltas -- # : linux_enable="YES" : moused_enable="YES" : gateway_enable="YES" : : ############ my changes ############ : swapfile="NO" # Set to name of swapfile if aux swapfile desired. : apm_enable="YES" # Set to YES to enable APM BIOS functions (or NO). : pccard_mem="DEFAULT" # If pccard_enable=YES, this is card memory address. : pccard_beep="1" # pccard beep type. : pccard_enable="YES" # Set to YES if you want to configure PCCARD devices. : pccard_conf="/etc/pccard.conf" # pccardd(8) config file To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 20 23:14: 7 2000 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 2457337B423 for ; Sun, 20 Aug 2000 23:14:05 -0700 (PDT) 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 AAA51654; Mon, 21 Aug 2000 00:14:03 -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 AAA36402; Mon, 21 Aug 2000 00:13:01 -0600 (MDT) Message-Id: <200008210613.AAA36402@harmony.village.org> To: Jonathan Towne Subject: Re: NEWCARD quick update Cc: mobile@Freebsd.Org In-reply-to: Your message of "Sun, 20 Aug 2000 23:40:41 CDT." <20000820234040.B9717@minix.cx> References: <20000820234040.B9717@minix.cx> <20000820212227.A9717@minix.cx> <200008192147.PAA29658@harmony.village.org> <20000820212227.A9717@minix.cx> <200008210234.UAA35703@harmony.village.org> Date: Mon, 21 Aug 2000 00:13:01 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000820234040.B9717@minix.cx> Jonathan Towne writes: : Somehow I remember "smc91c92" being listed as supported under "sn".. : My Ositech Trumpcard (JoH 56K+Ethernet) uses the linux driver for the : smc91c92..and probes as such.. they're nice cards, aside from freebsd : support, I recommend them.. it didn't take me too long to get it fully : working (both modem and ethernet, at the same time) under linux. Yes, that's the chip. I never knew there was a trumpcard that used it. How interesting. I'll have to try to find one on ebay since that would make an excellent testbed. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 21 1:10:21 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hotmail.com (f177.law9.hotmail.com [64.4.9.177]) by hub.freebsd.org (Postfix) with ESMTP id E35AB37B43C for ; Mon, 21 Aug 2000 01:10:19 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 21 Aug 2000 01:10:19 -0700 Received: from 63.195.114.87 by lw9fd.law9.hotmail.msn.com with HTTP; Mon, 21 Aug 2000 GMT X-Originating-IP: [63.195.114.87] From: "Greg Smith" To: freebsd-mobile@freebsd.org Subject: Re: Winbook FX w/ Cirrus 5729/5730 PCIC + FreeBSD 4.1R = SOL ? Date: Mon, 21 Aug 2000 08:10:19 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 21 Aug 2000 08:10:19.0809 (UTC) FILETIME=[3F3F9910:01C00B47] Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks Sean. I used the following: device pcic0 at isa? port 0xfcec irq 9 and it worked, with ep0 seemingly configuring properly on irq 11. I will test it, try polling mode etc. tomorrow. The machine did hang and howl like a banshee when I removed the card however, but that will not be an issue under normal operations. >: I recently installed FreeBSD 4.1-Release on a Winbook FX (P133, 32MB, >2GB). >: The machine now can dual-boot win95 or FreeBSD. The installation went >fine, >: but I get the following errors: >: pccardd: "fatal error: no PC-CARD slots" >: pccardc: "/dev/card0: Device not configured" > >It is not picking up the pcic in your machine ... do you know what >your pcic is? > >I had to do the following to get a Winbook-LM to work (under 3.?) > ># PCIC device ># - port is a bigtime hack (got from scanpci :) >device pcic0 at isa? port 0xfcfc irq 11 > ________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail 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 Mon Aug 21 5:26:59 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 97A5D37B422 for ; Mon, 21 Aug 2000 05:26:55 -0700 (PDT) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id IAA95625 for mobile@freebsd.org; Mon, 21 Aug 2000 08:26:55 -0400 (EDT) (envelope-from mwlucas) From: Michael Lucas Message-Id: <200008211226.IAA95625@blackhelicopters.org> Subject: Yamaha sound chip on -current To: mobile@freebsd.org Date: Mon, 21 Aug 2000 08:26:55 -0400 (EDT) X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Okay, I give up. After much puttering, I simply can't make the Yamaha OPL-3 in my Toshiba laptop speak. I can't even get it recognized on boot. My kernel config contains device pcm I'm running -current, and this worked up until the recent config changes. Obviously something changed there, but I can't find it. I've been through the mailing lists, can't find a dang thing. My dmesg follows. Help? Please? ==ml Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #0: Mon Aug 14 10:52:14 EDT 2000 mwlucas@moneysink.exceptionet.com:/usr/obj/usr/src/sys/PETULANCE Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (266.62-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x652 Stepping = 2 Features=0x183f9ff real memory = 167706624 (163776K bytes) avail memory = 160391168 (156632K bytes) Preloaded elf kernel "kernel" at 0xc02a8000. Preloaded elf module "randomdev.ko" at 0xc02a809c. Pentium Pro MTRR support enabled apm0: on motherboard apm0: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 0.0 pcic-pci0: at device 2.0 on pci0 pcic-pci1: at device 2.1 on pci0 pci0: at 4.0 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfe60-0xfe6f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 7.2 irq 11 pci0: at 7.3 pci0: at 10.0 irq 11 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model GlidePoint, device ID 0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fd0: <1440-KB 3.5" drive> on fdc0 drive 0 pcic0: at port 0x3e0-0x3e1 on isa0 pcic0: Polling mode pcic-pci0: at device 2.0 on pci0 pcic-pci1: at device 2.1 on pci0 pci0: at 4.0 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfe60-0xfe6f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 7.2 irq 11 pci0: at 7.3 pci0: at 10.0 irq 11 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model GlidePoint, device ID 0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fd0: <1440-KB 3.5" drive> on fdc0 drive 0 pcic0: at port 0x3e0-0x3e1 on isa0 pcic0: Polling mode pccard0: on pcic0 pccard1: on pcic0 ppc0: parallel port not found. sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources IP Filter: v3.4.9 initialized. Default = pass all, Logging = enabled pccard: card inserted, slot 0 pccard: card inserted, slot 1 ata1-slave: ata_command: timeout waiting for intr ata1-slave: identify failed ad0: 4126MB [8944/15/63] at ata0-master using UDMA33 acd0: CDROM at ata1-master using WDMA2 Mounting root from ufs:/dev/ad0s1a To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 21 9:31:38 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mailout1-1.nyroc.rr.com (mailout1-1.nyroc.rr.com [24.92.226.146]) by hub.freebsd.org (Postfix) with ESMTP id A670437B43C for ; Mon, 21 Aug 2000 09:31:30 -0700 (PDT) Received: from mail1.twcny.rr.com (mail1-0 [24.92.226.74]) by mailout1-1.nyroc.rr.com (8.9.3/8.9.3) with ESMTP id MAA20558; Mon, 21 Aug 2000 12:28:48 -0400 (EDT) Received: from voodoo.minix.cx ([24.169.74.77]) by mail1.twcny.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-53939U80000L80000S0V35) with ESMTP id com; Mon, 21 Aug 2000 12:28:55 -0400 Received: by voodoo.minix.cx (Postfix, from userid 1000) id 005BB2686; Mon, 21 Aug 2000 11:21:16 -0500 (EST) Date: Mon, 21 Aug 2000 11:21:15 -0500 From: Jonathan Towne To: Warner Losh Cc: mobile@freebsd.org Subject: Re: NEWCARD quick update Message-ID: <20000821112114.A11606@minix.cx> References: <20000820234040.B9717@minix.cx> <20000820212227.A9717@minix.cx> <200008192147.PAA29658@harmony.village.org> <20000820212227.A9717@minix.cx> <200008210234.UAA35703@harmony.village.org> <20000820234040.B9717@minix.cx> <200008210613.AAA36402@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200008210613.AAA36402@harmony.village.org>; from imp@village.org on Mon, Aug 21, 2000 at 12:13:01AM -0600 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Aug 21, 2000 at 12:13:01AM -0600, Warner Losh scribbled: # In message <20000820234040.B9717@minix.cx> Jonathan Towne writes: # : Somehow I remember "smc91c92" being listed as supported under "sn".. # : My Ositech Trumpcard (JoH 56K+Ethernet) uses the linux driver for the # : smc91c92..and probes as such.. they're nice cards, aside from freebsd # : support, I recommend them.. it didn't take me too long to get it fully # : working (both modem and ethernet, at the same time) under linux. # # Yes, that's the chip. I never knew there was a trumpcard that used # it. How interesting. I'll have to try to find one on ebay since that # would make an excellent testbed. I've never found them on ebay, its like they're rare :( Paid $270 for mine, brand new, with a 5 year warranty, etc.. ositech.com lists vendors if you're *that* interested :) - Jonathan Towne To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 21 10:25:55 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id D252637B422 for ; Mon, 21 Aug 2000 10:25:52 -0700 (PDT) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id NAA96640 for mobile@freebsd.org; Mon, 21 Aug 2000 13:25:52 -0400 (EDT) (envelope-from mwlucas) From: Michael Lucas Message-Id: <200008211725.NAA96640@blackhelicopters.org> Subject: re: Yamaha sound chip To: mobile@freebsd.org Date: Mon, 21 Aug 2000 13:25:52 -0400 (EDT) X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Okay, this is weird. I've spent the last few weeks trying to make sound work. I was making world when I wrote asking about this sound card. Now, it works. I've changed nothing except the entire operating system and the kernel. :) Please disregard. Sigh. ==ml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 21 14:46:19 2000 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 785BF37B424 for ; Mon, 21 Aug 2000 14:46:16 -0700 (PDT) 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 PAA55037; Mon, 21 Aug 2000 15:46:14 -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 PAA41160; Mon, 21 Aug 2000 15:45:10 -0600 (MDT) Message-Id: <200008212145.PAA41160@harmony.village.org> To: Erich Zigler Subject: Re: Simple Technology 16MB Compact Flash Card Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Sun, 20 Aug 2000 11:16:28 CDT." <20000820111627.A5271@superhero.org> References: <20000820111627.A5271@superhero.org> Date: Mon, 21 Aug 2000 15:45:10 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000820111627.A5271@superhero.org> Erich Zigler writes: : Aug 20 11:07:23 prydn /kernel: pccard: card inserted, slot 0 : Aug 20 11:07:29 prydn pccardd[653]: No card in database for : "(null)"("(null)") You need to get pccard working first. You aren't able to map the CIS into memory, which is the first problem you need to correct. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 21 14:53:35 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from prydn.tacni.net (207-55-167-109.dhc.net [207.55.167.109]) by hub.freebsd.org (Postfix) with SMTP id E2BE837B50B for ; Mon, 21 Aug 2000 14:53:31 -0700 (PDT) Received: (qmail 50134 invoked by uid 1001); 21 Aug 2000 21:53:08 -0000 Date: Mon, 21 Aug 2000 16:53:08 -0500 From: Erich Zigler To: freebsd-mobile@FreeBSD.ORG Subject: Re: Simple Technology 16MB Compact Flash Card Message-ID: <20000821165308.B50050@superhero.org> Mail-Followup-To: Erich Zigler , freebsd-mobile@FreeBSD.ORG References: <20000820111627.A5271@superhero.org> <200008212145.PAA41160@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008212145.PAA41160@harmony.village.org>; from imp@village.org on Mon, Aug 21, 2000 at 03:45:10PM -0600 X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Aug 21, 2000 at 03:45:10PM -0600, Warner Losh wrote: > In message <20000820111627.A5271@superhero.org> Erich Zigler writes: > : Aug 20 11:07:23 prydn /kernel: pccard: card inserted, slot 0 > : Aug 20 11:07:29 prydn pccardd[653]: No card in database for > : "(null)"("(null)") > You need to get pccard working first. You aren't able to map the CIS > into memory, which is the first problem you need to correct. pccard is working correctly because I can have it correctly detect my Network card that plugs into slot 1. It also does not work if I plug it into slot 1. Or only use slot 1 or slot 0. -- Erich Zigler Sr. System Administrator No my powers can only be used for good. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 21 15:54:15 2000 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 DA19637B5AF for ; Mon, 21 Aug 2000 15:54:12 -0700 (PDT) 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 QAA55371; Mon, 21 Aug 2000 16:54: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 QAA41772; Mon, 21 Aug 2000 16:53:06 -0600 (MDT) Message-Id: <200008212253.QAA41772@harmony.village.org> To: Erich Zigler Subject: Re: Simple Technology 16MB Compact Flash Card Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 21 Aug 2000 16:53:08 CDT." <20000821165308.B50050@superhero.org> References: <20000821165308.B50050@superhero.org> <20000820111627.A5271@superhero.org> <200008212145.PAA41160@harmony.village.org> Date: Mon, 21 Aug 2000 16:53:06 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000821165308.B50050@superhero.org> Erich Zigler writes: : On Mon, Aug 21, 2000 at 03:45:10PM -0600, Warner Losh wrote: : : > In message <20000820111627.A5271@superhero.org> Erich Zigler writes: : > : Aug 20 11:07:23 prydn /kernel: pccard: card inserted, slot 0 : > : Aug 20 11:07:29 prydn pccardd[653]: No card in database for : > : "(null)"("(null)") : > You need to get pccard working first. You aren't able to map the CIS : > into memory, which is the first problem you need to correct. : : pccard is working correctly because I can have it correctly detect my : Network card that plugs into slot 1. It also does not work if I plug it into : slot 1. Or only use slot 1 or slot 0. OK. Then it may be the problem that we've seen on a few laptops where CF cards aren't properly initialized. Likely this is a voltage issue of some sort. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 21 15:57:15 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from prydn.tacni.net (207-55-167-109.dhc.net [207.55.167.109]) by hub.freebsd.org (Postfix) with SMTP id DFB4637B5AF for ; Mon, 21 Aug 2000 15:57:12 -0700 (PDT) Received: (qmail 82997 invoked by uid 1001); 21 Aug 2000 22:56:55 -0000 Date: Mon, 21 Aug 2000 17:56:55 -0500 From: Erich Zigler To: freebsd-mobile@FreeBSD.ORG Subject: Re: Simple Technology 16MB Compact Flash Card Message-ID: <20000821175655.A82963@superhero.org> Mail-Followup-To: Erich Zigler , freebsd-mobile@FreeBSD.ORG References: <20000821165308.B50050@superhero.org> <20000820111627.A5271@superhero.org> <200008212145.PAA41160@harmony.village.org> <20000821165308.B50050@superhero.org> <200008212253.QAA41772@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008212253.QAA41772@harmony.village.org>; from imp@village.org on Mon, Aug 21, 2000 at 04:53:06PM -0600 X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Aug 21, 2000 at 04:53:06PM -0600, Warner Losh wrote: > OK. Then it may be the problem that we've seen on a few laptops where > CF cards aren't properly initialized. Likely this is a voltage > issue of some sort. Any idea on a fix? -- Erich Zigler Sr. System Administrator I am a bomb technician. If you see me running, try to keep up. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 21 18: 7:48 2000 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 A9E4E37B424 for ; Mon, 21 Aug 2000 18:07:43 -0700 (PDT) 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 TAA55985; Mon, 21 Aug 2000 19:07:42 -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 TAA42871; Mon, 21 Aug 2000 19:06:37 -0600 (MDT) Message-Id: <200008220106.TAA42871@harmony.village.org> To: Erich Zigler Subject: Re: Simple Technology 16MB Compact Flash Card Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 21 Aug 2000 17:56:55 CDT." <20000821175655.A82963@superhero.org> References: <20000821175655.A82963@superhero.org> <20000821165308.B50050@superhero.org> <20000820111627.A5271@superhero.org> <200008212145.PAA41160@harmony.village.org> <20000821165308.B50050@superhero.org> <200008212253.QAA41772@harmony.village.org> Date: Mon, 21 Aug 2000 19:06:37 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000821175655.A82963@superhero.org> Erich Zigler writes: : On Mon, Aug 21, 2000 at 04:53:06PM -0600, Warner Losh wrote: : : > OK. Then it may be the problem that we've seen on a few laptops where : > CF cards aren't properly initialized. Likely this is a voltage : > issue of some sort. : : Any idea on a fix? Try this one: Index: pccard.c =================================================================== RCS file: /home/imp/FreeBSD/CVS/src/sys/pccard/pccard.c,v retrieving revision 1.108 diff -u -r1.108 pccard.c --- pccard.c 2000/06/23 22:47:17 1.108 +++ pccard.c 2000/08/22 01:06:03 @@ -282,7 +282,7 @@ * Enable 5V to the card so that the CIS can be read. */ slt->pwr.vcc = 50; - slt->pwr.vpp = 0; + slt->pwr.vpp = 50; /* * Disable any pending timeouts for this slot, and explicitly To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 6:47:21 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from nothing-going-on.demon.co.uk (nothing-going-on.demon.co.uk [193.237.89.66]) by hub.freebsd.org (Postfix) with ESMTP id 1AB9537B424 for ; Tue, 22 Aug 2000 06:47:04 -0700 (PDT) Received: (from nik@localhost) by nothing-going-on.demon.co.uk (8.11.0/8.11.0) id e7MDigv01878 for mobile@freebsd.org; Tue, 22 Aug 2000 14:44:42 +0100 (BST) (envelope-from nik) Date: Tue, 22 Aug 2000 14:44:36 +0100 From: Nik Clayton To: mobile@freebsd.org Subject: Reflections on the Sony Vaio F709 (F590K ?) Message-ID: <20000822144436.A1306@canyon.nothing-going-on.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="AhhlLboLdkugWU4S" Content-Disposition: inline User-Agent: Mutt/1.2.5i Organization: FreeBSD Project Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi guys, I've been playing around with a new Sony Vaio for the past week or so, and thought I'd drop a line about it here, so that anyone considering getting one can get some advice, either now, or in the archives later. First off, it's badged in the UK as the PCG-F709. I don't see any reference to that on the Sony site, but it looks like it's very similar to what they're calling the PCG-F590, see http://www.ita.sel.sony.com/products/pc/notebook/pcgf590k.html for more details. In brief, it's 750Mhz PIII w/ 128MB of RAM and an 18GB IDE disk. There's also a built in modem and DVD drive. This is my upgrade from a stalwart F270, which was a 333Mhz PII w/ 64MB of RAM and a 6GB disk. Overall it's a good solid machine, and it runs FreeBSD nicely. However, there are a few niggles that prospective purchasers should be aware of. FWIW, I'm running FreeBSD-current on it from about Thursday 17th August. First off, suspend to disk doesn't work. The F270 was great in this respect. As shipped, it had a special partition at the end of the disk. I didn't fiddle with this partition when I installed FreeBSD, and because of this, I could suspend and resume to disk (or memory) until the cows came home. The 709 didn't have this partition when I received it. In addition, the first time I booted it up (it had Windows pre-installed) it started up PHDISK.EXE which informed me that it was prepping the suspend file. I suspect that these machines now expect to be able to write to a file on a FAT partition somewhere in order to successfully suspend. While this does gain you back some disk space (on the order of whatever the maximum physical memory you can install in to the machine), it means you can't suspend to disk any more :-( Suspend to memory still works with no problems however. Related to this, I can no longer press Fn+F2 to get a display of the remaining battery life. On the F270 this bought up a graphic display showing the life remaining, and whether or not it was running off AC power. That feature's now gone. I'm hypothesising, but I suspect Fn+F2 is now supposed to trigger the OS to do it's own display. When I ran Windows on the F270 it intercepted the request and put up its own graphical display instead. I can still use tools like apm(8), and various X battery monitors, so it's no great loss. Secondly, the internal modem doesn't seem to work with FreeBSD. It's probed (along with the regular serial port) with no problems, as sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 sio2: configured irq 5 not in bitmap of probed irqs 0x404 sio2 at port 0x3e8-0x3ef irq 5 on isa0 sio2: type 16550A sio3: configured irq 9 not in bitmap of probed irqs 0 and I can tip(1) to cuaa2. But if I type anything the machine freezes. The F270 didn't have an internal modem, so this wasn't a problem. I have to hand a COM1 MC220 Modem Card, which has done sterling duty in the 270. So I tried that instead. While it's detected by pccardd, it can't assign a driver for it. So, for the time being, I'm using an external modem in sio0. Sadly, there's no option to disable the internal modem in the BIOS, and disabling the internal serial port didn't make any difference. Speaking of BIOS options, I tried compiling in USB support in to the kernel. One of the boot messages then said that "PNPOS" in the BIOS needed to be set to 'OFF' for this to work properly. It then continued booting up properly. So I rebooted, set PNPOS to off in the BIOS, and tried to bring FreeBSD up. It hung just after the IDE disk probes. . . And talking about hangs, "device pcm" works nicely in the F270, allowing audio to work, MP3s to play (albeit they sound somewhat tinny). Not a sausage on the F709. "device pcm" will cause the kernel to hang midway through the boot. This is probably because the F709 uses a different NeoMagic chipset to the one on the F270. Speaking of which, configuring X was a little more longwinded than I'm used to. Again, this is due to the NeoMagic XL+ chipset, which XFree86 doesn't support (the F270 has the NeoMagic AV chipset, which works with no problems). You can work around this (and there are messages in the -mobile archive explaining how to do so) -- in a nutshell you tell XFree86 it's a NM2200 instead, and then everything works fine. However, apart from those niggles, everything else works very nicely. The additional 1" of screen real estate is very useful, as is the increased speed and disk space. VMWare runs a treat on it, and Win98 is only slightly slower in a VMWare window than I would expect it to be when run natively. I don't doubt the support for the hardware will catch up in time. In the meantime, I've attached the kernel config file I'm currently using, and the dmesg output, in case anyone's interested. N -- Internet connection, $19.95 a month. Computer, $799.95. Modem, $149.95. Telephone line, $24.95 a month. Software, free. USENET transmission, hundreds if not thousands of dollars. Thinking before posting, priceless. Somethings in life you can't buy. For everything else, there's MasterCard. -- Graham Reed, in the Scary Devil Monastery --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="dmesg.out" Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #12: Tue Aug 22 13:04:08 BST 2000 nik@canyon.nothing-going-on.org:/local/0/usr/src/sys/compile/CANYON Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (744.47-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 134152192 (131008K bytes) avail memory = 127897600 (124900K bytes) Preloaded elf kernel "kernel" at 0xc029d000. Pentium Pro MTRR support enabled md0: Malloc disk apm0: on motherboard apm0: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 0.0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 9 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfc90-0xfc9f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 7.2 irq 9 intpm0: port 0x1040-0x104f irq 9 at device 7.3 on pci0 intpm0: I/O mapped 1040 intpm0: intr IRQ 9 enabled revision 0 smbus0: on intsmb0 intpm0: PM I/O mapped 8000 pci0: (vendor=0x104d, dev=0x8039) at 8.0 irq 9 pci0: (vendor=0x1073, dev=0x0010) at 9.0 irq 9 pci0: (vendor=0x14f1, dev=0x2443) at 10.0 irq 9 pcic-pci0: at device 12.0 on pci0 pcic-pci1: at device 12.1 on pci0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model GlidePoint, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> pcic0: at port 0x3e0 iomem 0xd0000 irq 10 on isa0 pcic0: management irq 10 pccard0: on pcic0 pccard1: on pcic0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 sio2: configured irq 5 not in bitmap of probed irqs 0x404 sio2 at port 0x3e8-0x3ef irq 5 on isa0 sio2: type 16550A sio3: configured irq 9 not in bitmap of probed irqs 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 ppi0: on ppbus0 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources BRIDGE 990810, have 2 interfaces ad0: 17301MB [35152/16/63] at ata0-master using UDMA33 acd0: DVD-ROM at ata1-master using PIO4 Mounting root from ufs:/dev/ad0s1a --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=CANYON # machine i386 cpu I686_CPU ident CANYON maxusers 64 hints "CANYON.hints" #Default places to look for devices. options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options KBD_INSTALL_CDEV # install a CDEV entry in /dev options RANDOMDEV #entropy device device isa device eisa device pci # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID #Static device numbering #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # SCSI peripherals #device scbus # SCSI bus (required) #device da # Direct Access (disks) # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc 1 device atkbd device psm device vga # splash screen/screen saver device splash # syscons is the default console driver, resembling an SCO console device sc 1 # Floating point support - do not disable. device npx # Power management support (see NOTES for more options) device apm # PCCARD (PCMCIA) support device card device pcic # Serial (COM) ports device sio # Parallel port device ppc device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs that use the common MII bus controller code. #device miibus # MII bus support device xe # Pseudo devices - the number indicates how many units to allocated. device loop # Network loopback device ether # Ethernet support device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device md # Memory "disks" # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! device bpf # Berkeley packet filter # USB support #device uhci # UHCI PCI->USB interface #device ohci # OHCI PCI->USB interface #device usb # USB Bus (required) #device udbp # USB Double Bulk Pipe devices #device ugen # Generic #device uhid # "Human Interface Devices" #device ukbd # Keyboard #device ulpt # Printer #device umass # Disks/Mass storage - Requires scbus and da #device ums # Mouse #device urio # Diamond Rio 500 MP3 player options BRIDGE #device pcm # Hangs on boot options NO_F00F_HACK device smbus device intpm --AhhlLboLdkugWU4S-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 7:21:43 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from prydn.tacni.net (207-55-167-21.dhc.net [207.55.167.21]) by hub.freebsd.org (Postfix) with SMTP id 0FEDD37B42C for ; Tue, 22 Aug 2000 07:21:41 -0700 (PDT) Received: (qmail 426 invoked by uid 1001); 22 Aug 2000 14:21:37 -0000 Date: Tue, 22 Aug 2000 09:21:37 -0500 From: Erich Zigler To: freebsd-mobile@FreeBSD.ORG Subject: Re: Simple Technology 16MB Compact Flash Card Message-ID: <20000822092137.A374@superhero.org> Mail-Followup-To: Erich Zigler , freebsd-mobile@FreeBSD.ORG References: <20000821175655.A82963@superhero.org> <20000821165308.B50050@superhero.org> <20000820111627.A5271@superhero.org> <200008212145.PAA41160@harmony.village.org> <20000821165308.B50050@superhero.org> <200008212253.QAA41772@harmony.village.org> <20000821175655.A82963@superhero.org> <200008220106.TAA42871@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008220106.TAA42871@harmony.village.org>; from imp@village.org on Mon, Aug 21, 2000 at 07:06:37PM -0600 X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Aug 21, 2000 at 07:06:37PM -0600, Warner Losh wrote: > Try this one: > Index: pccard.c Thanks for your help, but that didn't work. Exact same symptoms as above. (Im not going to retype them all here, go up a couple posts.) -- Erich Zigler Sr. System Administrator Take note of the toes you step on today as they may be connected to the ass you have to kick tomorrow. -- Ben To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 7:36:10 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from moek.pir.net (moek.pir.net [209.192.237.190]) by hub.freebsd.org (Postfix) with ESMTP id C31B337B43F for ; Tue, 22 Aug 2000 07:36:03 -0700 (PDT) Received: from pir by moek.pir.net with local (Exim) id 13RF9g-0007gF-00 for mobile@freebsd.org; Tue, 22 Aug 2000 10:35:56 -0400 Date: Tue, 22 Aug 2000 10:35:56 -0400 From: Peter Radcliffe To: mobile@freebsd.org Subject: Re: Reflections on the Sony Vaio F709 (F590K ?) Message-ID: <20000822103555.C29067@pir.net> Mail-Followup-To: mobile@freebsd.org References: <20000822144436.A1306@canyon.nothing-going-on.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000822144436.A1306@canyon.nothing-going-on.org>; from nik@freebsd.org on Tue, Aug 22, 2000 at 02:44:36PM +0100 X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Nik Clayton probably said: > The 709 didn't have this partition when I received it. In addition, the > first time I booted it up (it had Windows pre-installed) it started up > PHDISK.EXE which informed me that it was prepping the suspend file. I > suspect that these machines now expect to be able to write to a file on > a FAT partition somewhere in order to successfully suspend. While this > does gain you back some disk space (on the order of whatever the maximum > physical memory you can install in to the machine), it means you can't > suspend to disk any more :-( Suspend to memory still works with no problems > however. Every vaio I've messed with, if it doesn't ship with a suspend to disk partition, you can use phdisk /partition /create (from memory) to create one, then /file /delete to remove the file in a FAT partition to get rid of the old one. Partition must be under 8Gb into the disk, so there must be space for it. > Related to this, I can no longer press Fn+F2 to get a display of the > remaining battery life. On the F270 this bought up a graphic display > showing the life remaining, and whether or not it was running off AC > power. That feature's now gone. > > I'm hypothesising, but I suspect Fn+F2 is now supposed to trigger the OS > to do it's own display. When I ran Windows on the F270 it intercepted > the request and put up its own graphical display instead. Yeah, they're slowly moving more crontrol out of the BIOS, which is a shame. I can do less and less from F keys, with newer vaios. > Secondly, the internal modem doesn't seem to work with FreeBSD. It's > probed (along with the regular serial port) with no problems, as > > sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 > sio0: type 16550A > sio1: configured irq 3 not in bitmap of probed irqs 0 > sio2: configured irq 5 not in bitmap of probed irqs 0x404 > sio2 at port 0x3e8-0x3ef irq 5 on isa0 > sio2: type 16550A > sio3: configured irq 9 not in bitmap of probed irqs 0 > > and I can tip(1) to cuaa2. But if I type anything the machine freezes. Bizarre. I'd expect it to be a winmodem and just not show up. > The F270 didn't have an internal modem, so this wasn't a problem. I have > to hand a COM1 MC220 Modem Card, which has done sterling duty in the 270. > So I tried that instead. While it's detected by pccardd, it can't assign > a driver for it. So, for the time being, I'm using an external modem Sounds like you should mess with avaialb ememory space and irqs. > Speaking of BIOS options, I tried compiling in USB support in to the kernel. > One of the boot messages then said that "PNPOS" in the BIOS needed to be > set to 'OFF' for this to work properly. It then continued booting up > properly. So I rebooted, set PNPOS to off in the BIOS, and tried to > bring FreeBSD up. It hung just after the IDE disk probes. . . Are you booting 4.0 by any chance ? I had the same problem with 4.0, but 4.1-RC1 and 4.1-S have been fine. > And talking about hangs, "device pcm" works nicely in the F270, allowing > audio to work, MP3s to play (albeit they sound somewhat tinny). Not a > sausage on the F709. "device pcm" will cause the kernel to hang midway > through the boot. This is probably because the F709 uses a different > NeoMagic chipset to the one on the F270. The later vaios are mostly Yamaha chipset audio, which is supported in -STABLE now. Check under windows. > However, apart from those niggles, everything else works very nicely. > The additional 1" of screen real estate is very useful, as is the > increased speed and disk space. VMWare runs a treat on it, and Win98 is > only slightly slower in a VMWare window than I would expect it to be when > run natively. Cool. I've not managed to get VMWare running particularly fast on my PIII500/256Mb/12Gb Z505HS, but havn't really messed with it much. P. -- pir pir@pir.net pir@net.tufts.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 8:22: 8 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from lavender.sanpei.org (ppp171.dialup.st.keio.ac.jp [131.113.27.171]) by hub.freebsd.org (Postfix) with ESMTP id 8A93437B423 for ; Tue, 22 Aug 2000 08:21:54 -0700 (PDT) Received: (from sanpei@localhost) by lavender.sanpei.org (8.11.0/3.7W) id e7MFLnF01171; Wed, 23 Aug 2000 00:21:49 +0900 (JST) Date: Wed, 23 Aug 2000 00:21:49 +0900 (JST) Message-Id: <200008221521.e7MFLnF01171@lavender.sanpei.org> To: freebsd-mobile@FreeBSD.ORG Subject: Re: Simple Technology 16MB Compact Flash Card In-Reply-To: Your message of "Tue, 22 Aug 2000 10:06:37 JST". <200008220106.TAA42871@harmony.village.org> From: sanpei@sanpei.org (MIHIRA Yoshiro) X-Mailer: mnews [version 1.21] 1997-12/23(Tue) Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org imp@village.org wrote: >> In message <20000821175655.A82963@superhero.org> Erich Zigler writes: >> : On Mon, Aug 21, 2000 at 04:53:06PM -0600, Warner Losh wrote: >> : >> : > OK. Then it may be the problem that we've seen on a few laptops where >> : > CF cards aren't properly initialized. Likely this is a voltage >> : > issue of some sort. >> : >> : Any idea on a fix? >> >> Try this one: >> >> Index: pccard.c >> =================================================================== >> RCS file: /home/imp/FreeBSD/CVS/src/sys/pccard/pccard.c,v I tested above path to IBM ThinkPad600, unfortunately I could not use Compact Flash Card... --------------- I checked in pcic_power@sys/pccard/pcic.c routine. In below code, re-power pcic with 3.3V. ---- /* Some chips are smarter than us it seems, so if we weren't * allowed to use 5V, try 3.3 instead */ if (!(sp->getb(sp, PCIC_STATUS) & 0x40) && slt->pwr.vcc == 50) { slt->pwr.vcc = 33; slt->pwr.vpp = 0; return (pcic_power(slt)); } ---- But sp->controller was PCIC_I82365 and never set reg |= PCIC_VCC_3V; Because PCIC in this ThinkPad is TI1250, but pcic0 is probed as Intel i82365(PCIC_I82365). I think it needs 3.3V for CF card with TI 1250 PCIC or ThinkPad600. I added below change, I could attach CF card with ThinkPad600!! (but this is quick-hack, Please use **at your own risk**) --- pcic.c.org Wed Aug 23 00:02:32 2000 +++ pcic.c Wed Aug 23 00:02:55 2000 @@ -609,6 +609,7 @@ case PCIC_RF5C396: case PCIC_VLSI: case PCIC_IBM_KING: + case PCIC_I82365: switch(slt->pwr.vpp) { default: return(EINVAL); Cheers. MIHIRA Yoshiro Yokohama, Japan. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 9:38:17 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from prydn.tacni.net (207-55-167-21.dhc.net [207.55.167.21]) by hub.freebsd.org (Postfix) with SMTP id 2C43737B424 for ; Tue, 22 Aug 2000 09:38:08 -0700 (PDT) Received: (qmail 393 invoked by uid 1001); 22 Aug 2000 16:38:03 -0000 Date: Tue, 22 Aug 2000 11:38:03 -0500 From: Erich Zigler To: freebsd-mobile@FreeBSD.ORG Subject: Re: Simple Technology 16MB Compact Flash Card Message-ID: <20000822113803.A324@superhero.org> Mail-Followup-To: Erich Zigler , freebsd-mobile@FreeBSD.ORG References: <200008220106.TAA42871@harmony.village.org> <200008221521.e7MFLnF01171@lavender.sanpei.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008221521.e7MFLnF01171@lavender.sanpei.org>; from sanpei@sanpei.org on Wed, Aug 23, 2000 at 12:21:49AM +0900 X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Aug 23, 2000 at 12:21:49AM +0900, MIHIRA Yoshiro wrote: > I checked in pcic_power@sys/pccard/pcic.c routine. In below code, > re-power pcic with 3.3V. This worked. Thank you very much. -- Erich Zigler Sr. System Administrator Duckman! You're a half an hour late. -- Principle And I should be feeling what exactly? -- Duckman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 10:14:11 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hotmail.com (f140.law9.hotmail.com [64.4.9.140]) by hub.freebsd.org (Postfix) with ESMTP id 1A98137B43E; Tue, 22 Aug 2000 10:14:09 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Aug 2000 10:14:08 -0700 Received: from 63.195.114.87 by lw9fd.law9.hotmail.msn.com with HTTP; Tue, 22 Aug 2000 GMT X-Originating-IP: [63.195.114.87] From: "Greg Smith" To: nik@freebsd.org Cc: mobile@freebsd.org Subject: Re: Reflections on the Sony Vaio F709 (F590K ?) Date: Tue, 22 Aug 2000 17:14:08 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Aug 2000 17:14:08.0935 (UTC) FILETIME=[6222DB70:01C00C5C] Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Nik, I have had very good luck with Phoenix Suspend to Disk on 3 different machines. The phdisk.exe was always smart enough to create the correct partition on my HD as long as there was enough free space, and to complain if there wasn't enough free space. [translate partition to slice if you wish] The suspend to disk has always used a separate partition on my machines, of a separate type which the BIOS recognizes. You might check for the existence of this separate partition. If it is not there the BIOS will just do nothing, or maybe beep, when you attempt to suspend to disk. On my dual-boot win95/freebsd machine I have the following: PMtype PM# SIdesc SItype SIsub fat32 B fat 2 11 freebsd/386 a5 freebsd 3 165 savetodisk a0 unknown 1 160 (where PM is PartitionMagic and SI is SysInstall) I got my HD this way by: 1) defrag win95 2) shrink win95 partition with PartitionMagic 3) install FreeBSD into freed up space >First off, suspend to disk doesn't work. : >The 709 didn't have this partition when I received it. In addition, the >first time I booted it up (it had Windows pre-installed) it started up >PHDISK.EXE which informed me that it was prepping the suspend file. I >suspect that these machines now expect to be able to write to a file on >a FAT partition somewhere in order to successfully suspend. While this >does gain you back some disk space (on the order of whatever the maximum >physical memory you can install in to the machine), it means you can't >suspend to disk any more :-( > >Related to this, I can no longer press Fn+F2 to get a display of the >remaining battery life. On the F270 this bought up a graphic display >showing the life remaining, and whether or not it was running off AC >power. That feature's now gone. > >I'm hypothesising, but I suspect Fn+F2 is now supposed to trigger the OS >to do it's own display. When I ran Windows on the F270 it intercepted >the request and put up its own graphical display instead. > Fn+F2 [status] or Fn+F5 [pm] both pull up the little "window" showing battery life on my Winbook FX under FreeBSD 4.1R; Fn+F4 [suspend] does suspend to disk under FreeBSD 4.1R; FWIW. My machine has Phoenix NoteBIOS 4.0 from 1997. ________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail 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 Tue Aug 22 11:24: 7 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hotmail.com (f178.law9.hotmail.com [64.4.9.178]) by hub.freebsd.org (Postfix) with ESMTP id 606BD37B42C; Tue, 22 Aug 2000 11:23:51 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Aug 2000 11:23:51 -0700 Received: from 63.195.114.87 by lw9fd.law9.hotmail.msn.com with HTTP; Tue, 22 Aug 2000 GMT X-Originating-IP: [63.195.114.87] From: "Greg Smith" To: nik@freebsd.org Cc: mobile@freebsd.org Subject: Re: Reflections on the Sony Vaio F709 (F590K ?) Date: Tue, 22 Aug 2000 18:23:51 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Aug 2000 18:23:51.0268 (UTC) FILETIME=[1F003A40:01C00C66] Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Nik, Two more thoughts on your suspend to disk problem: 1) Did you add extra RAM? If you do this it is necessary to delete the original suspend to disk partition [any tool will do], and then add a newly sized partition [phdisk.exe] I have done this on two machines before with no problem; I did have to shrink the other partitions first. 2) Did you install FreeBSD to take the entire HD, or to co-exist with win95/98? If you take the entire disk option I believe it will wipe out all other partitions, including the suspend to disk partition. >The suspend to disk has always used a separate partition on my >machines, of a separate type which the BIOS recognizes. You might >check for the existence of this separate partition. If it is not >there the BIOS will just do nothing, or maybe beep, when you attempt >to suspend to disk. On my dual-boot win95/freebsd machine I have the >following: >PMtype PM# SIdesc SItype SIsub >fat32 B fat 2 11 >freebsd/386 a5 freebsd 3 165 >savetodisk a0 unknown 1 160 >(where PM is PartitionMagic and SI is SysInstall) >I got my HD this way by: >1) defrag win95 >2) shrink win95 partition with PartitionMagic >3) install FreeBSD into freed up space > ________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail 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 Tue Aug 22 14:12:19 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from Awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id 35D3B37B449; Tue, 22 Aug 2000 14:12:15 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.awfulhak.org [172.16.0.12]) by Awfulhak.org (8.9.3/8.9.3) with ESMTP id WAA22021; Tue, 22 Aug 2000 22:11:34 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.0/8.11.0) with ESMTP id e7MLBF423146; Tue, 22 Aug 2000 22:11:15 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200008222111.e7MLBF423146@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: "Greg Smith" Cc: nik@FreeBSD.ORG, mobile@FreeBSD.ORG, brian@Awfulhak.org Subject: Re: Reflections on the Sony Vaio F709 (F590K ?) In-Reply-To: Message from "Greg Smith" of "Tue, 22 Aug 2000 18:23:51 GMT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 22 Aug 2000 22:11:15 +0100 From: Brian Somers Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I don't suppose anyone can mail me a copy of pfdisk.exe ? cheers. > Nik, > > Two more thoughts on your suspend to disk problem: > > 1) Did you add extra RAM? If you do this it is necessary to delete the > original suspend to disk partition [any tool will do], and then add a newly > sized partition [phdisk.exe] I have done this on two machines before with > no problem; I did have to shrink the other partitions first. > > 2) Did you install FreeBSD to take the entire HD, or to co-exist with > win95/98? If you take the entire disk option I believe it will wipe out all > other partitions, including the suspend to disk partition. > > >The suspend to disk has always used a separate partition on my > >machines, of a separate type which the BIOS recognizes. You might > >check for the existence of this separate partition. If it is not > >there the BIOS will just do nothing, or maybe beep, when you attempt > >to suspend to disk. On my dual-boot win95/freebsd machine I have the > >following: > > >PMtype PM# SIdesc SItype SIsub > >fat32 B fat 2 11 > >freebsd/386 a5 freebsd 3 165 > >savetodisk a0 unknown 1 160 > >(where PM is PartitionMagic and SI is SysInstall) > > >I got my HD this way by: > >1) defrag win95 > >2) shrink win95 partition with PartitionMagic > >3) install FreeBSD into freed up space -- 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 Tue Aug 22 14:17:26 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from moek.pir.net (moek.pir.net [209.192.237.190]) by hub.freebsd.org (Postfix) with ESMTP id 9EFDE37B422 for ; Tue, 22 Aug 2000 14:17:24 -0700 (PDT) Received: from pir by moek.pir.net with local (Exim) id 13RLQA-0002Cb-00 for mobile@FreeBSD.ORG; Tue, 22 Aug 2000 17:17:22 -0400 Date: Tue, 22 Aug 2000 17:17:22 -0400 From: Peter Radcliffe To: mobile@FreeBSD.ORG Subject: Re: Reflections on the Sony Vaio F709 (F590K ?) Message-ID: <20000822171721.D648@pir.net> Mail-Followup-To: mobile@FreeBSD.ORG References: <200008222111.e7MLBF423146@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008222111.e7MLBF423146@hak.lan.Awfulhak.org>; from brian@Awfulhak.org on Tue, Aug 22, 2000 at 10:11:15PM +0100 X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Brian Somers probably said: > I don't suppose anyone can mail me a copy of pfdisk.exe ? It's usually in something like; c:\sonysys\Vsrcdfd\IMG\SPT\phdisk.exe on new vaios. It was there on mine until I did a windows restore from the recovery CDs to get rid of all the useless stuff :) If you don't get a copy from anyone else I'll try and find it from the recovery CDs tonight. P. -- pir pir@pir.net pir@net.tufts.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 15:39:58 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hotmail.com (f270.law9.hotmail.com [64.4.8.145]) by hub.freebsd.org (Postfix) with ESMTP id C61B237B424 for ; Tue, 22 Aug 2000 15:39:56 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 22 Aug 2000 15:39:56 -0700 Received: from 63.195.114.87 by lw9fd.law9.hotmail.msn.com with HTTP; Tue, 22 Aug 2000 GMT X-Originating-IP: [63.195.114.87] From: "Greg Smith" To: brian@Awfulhak.org Cc: freebsd-mobile@freebsd.org Subject: Re: Reflections on the Sony Vaio F709 (F590K ?) Date: Tue, 22 Aug 2000 22:39:56 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 22 Aug 2000 22:39:56.0715 (UTC) FILETIME=[E5855FB0:01C00C89] Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org A quick search at altavista turned up the following: ftp://ftp.acerafrica.com/NOTEBOOKS/Current%20Acer%20Notebook%20Range/TM310/DRIVERS/WIN95/Phdisk.zip http://ftp.pbnec.nl/pub/itemnr/NECFIUP00040100/PHDISK.EXE etc. etc. Greg >Brian Somers probably said: > > I don't suppose anyone can mail me a copy of pfdisk.exe ? ________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail 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 Tue Aug 22 17:47:54 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hermes.rz.fhtw-berlin.de (hermes.rz.fhtw-berlin.de [141.45.5.100]) by hub.freebsd.org (Postfix) with ESMTP id 2B77D37B42C for ; Tue, 22 Aug 2000 17:47:52 -0700 (PDT) Received: from oxid01.rz.fhtw-berlin.de (oxid01.rz.fhtw-berlin.de [141.45.4.201]) by hermes.rz.fhtw-berlin.de (8.9.3/8.9.3) with ESMTP id CAA05375 for ; Wed, 23 Aug 2000 02:47:50 +0200 (MET DST) Received: from localhost (s0233343@localhost) by oxid01.rz.fhtw-berlin.de (SGI-SGI-8.9.3/8.9.3) with ESMTP id CAA24217 for ; Wed, 23 Aug 2000 02:47:50 +0200 (MESZ) Date: Wed, 23 Aug 2000 02:47:49 +0200 From: Christian Peter Gruendemann Cc: mobile@FreeBSD.ORG Subject: Netgear Re: Reflections on the Sony Vaio F709 (F590K ?) In-Reply-To: <200008222111.e7MLBF423146@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 Hi, Today, I tried to install Freebsd 4.0 on a Toshiba Satellite Pro 4360 notebook with a pcmcia NetGear FA410 network card. I didn't manage it, and I think the network card is not supported by FreeBSD 4.0 Release? The Netgear networkcard is also not mentioned in the handbook. So, The card won't work, right? Does anybody know which pcmcia network card will work which the Toshiba notebook? Furthermore, is the Soundsystem (Yamaha YMF744B-R Chip) supported? Thanks in advance Christian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 17:51:48 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from qa-aix.peregrine.com (nat-155.peregrine.com [63.82.230.155]) by hub.freebsd.org (Postfix) with ESMTP id 9A0E737B424 for ; Tue, 22 Aug 2000 17:51:45 -0700 (PDT) Received: from peregrine.com (sys461.peregrine.com [172.18.1.61]) by qa-aix.peregrine.com (AIX4.2/UCB 8.7/8.7) with ESMTP id RAA08490; Tue, 22 Aug 2000 17:38:30 -0500 (CDT) Message-ID: <39A32002.CEE335C3@peregrine.com> Date: Tue, 22 Aug 2000 17:51:14 -0700 From: Eric Hedstrom X-Mailer: Mozilla 4.7 [ja] (WinNT; U) X-Accept-Language: ja MIME-Version: 1.0 To: Christian Peter Gruendemann Cc: mobile@FreeBSD.ORG Subject: Re: Netgear Re: Reflections on the Sony Vaio F709 (F590K ?) References: Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The Netgear FA410 is supported by the 'ed' driver. Don't know about the sound chip, though. eric Christian Peter Gruendemann wrote: > > Hi, > > Today, I tried to install Freebsd 4.0 on a Toshiba Satellite Pro > 4360 notebook with a pcmcia > NetGear FA410 network card. I didn't manage it, and I think the network > card is not supported by FreeBSD 4.0 Release? The Netgear networkcard is > also not mentioned in the handbook. So, The card won't work, right? > > Does anybody know which pcmcia network card will work which the Toshiba > notebook? > > Furthermore, is the Soundsystem (Yamaha YMF744B-R Chip) supported? > > Thanks in advance > > Christian > > 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 Tue Aug 22 17:58: 6 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from wilson.acpub.duke.edu (wilson.acpub.duke.edu [152.3.233.69]) by hub.freebsd.org (Postfix) with ESMTP id 519B237B423 for ; Tue, 22 Aug 2000 17:57:57 -0700 (PDT) Received: from bobzilla.adsl.duke.edu (bobzilla.adsl.duke.edu [152.16.67.15]) by wilson.acpub.duke.edu (8.9.3/8.9.3/Duke-5.0.0) with ESMTP id UAA09554; Tue, 22 Aug 2000 20:57:50 -0400 (EDT) Received: (from sto@localhost) by bobzilla.adsl.duke.edu (8.9.3/8.9.3) id UAA06152; Tue, 22 Aug 2000 20:57:48 -0400 (EDT) (envelope-from sto) Date: Tue, 22 Aug 2000 20:57:48 -0400 From: "Sean O'Connell" To: Christian Peter Gruendemann Cc: FreeBSD mobile Subject: Re: Netgear Re: Reflections on the Sony Vaio F709 (F590K ?) Message-ID: <20000822205748.A6016@stat.Duke.EDU> Reply-To: "Sean O'Connell" References: <200008222111.e7MLBF423146@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from chris.chris@fhtw-berlin.de on Wed, Aug 23, 2000 at 02:47:49AM +0200 X-Organization: House of Schmutzli X-Kitties: Bitty Maya CJ Keisha Jacob Hopey X-Hound: Bob X-OS-of-Choice: FreeBSD Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Christian Peter Gruendemann stated: : : Hi, : : Today, I tried to install Freebsd 4.0 on a Toshiba Satellite Pro : 4360 notebook with a pcmcia : NetGear FA410 network card. I didn't manage it, and I think the network : card is not supported by FreeBSD 4.0 Release? The Netgear networkcard is : also not mentioned in the handbook. So, The card won't work, right? : : Does anybody know which pcmcia network card will work which the Toshiba : notebook? : : Furthermore, is the Soundsystem (Yamaha YMF744B-R Chip) supported? : : Thanks in advance : Christian- This card should work in later editions of FreeBSD after 4.0-RELEASE. It was badly broken in 4.0-RELEASE (and STABLE up until June). YOu would do better to install from either 4.1-RELEASE or snapshot of -STABLE (see: ftp://releng4.freebsd.org/pub/FreeBSD/snapshots/i386/ for the most recent one). Support for the Yamaha chip was added shortly before 4.1-RELEASE, so a more recent STABLE snapshot outght to give you some noise... I haven't been able to get the Yamaha to play nice with the Linux realplay yet (I believe there are patches in the works ... fingers firmly crossed :), but you should be able to play music cd's and waveplay and maybe xmms (not 100% sure on this). Hope this helps, S PS. You have to be fairly mindful of IRQs when doing the install over the network. Take a good look at your Win9x Device Manager for unused IRQs. -- 1--------01---------01--------01--------01--------01--------01--------0 Sean O'Connell sean@stat.Duke.EDU To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 18: 6:29 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from moek.pir.net (moek.pir.net [209.192.237.190]) by hub.freebsd.org (Postfix) with ESMTP id 5121537B43F for ; Tue, 22 Aug 2000 18:06:26 -0700 (PDT) Received: from pir by moek.pir.net with local (Exim) id 13ROzo-0003Pu-00 for freebsd-mobile@FreeBSD.ORG; Tue, 22 Aug 2000 21:06:24 -0400 Date: Tue, 22 Aug 2000 21:06:23 -0400 From: Peter Radcliffe To: FreeBSD mobile Subject: Re: Netgear Re: Reflections on the Sony Vaio F709 (F590K ?) Message-ID: <20000822210623.A11022@pir.net> Mail-Followup-To: FreeBSD mobile References: <200008222111.e7MLBF423146@hak.lan.Awfulhak.org> <20000822205748.A6016@stat.Duke.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000822205748.A6016@stat.Duke.EDU>; from sean@stat.Duke.EDU on Tue, Aug 22, 2000 at 08:57:48PM -0400 X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sean O'Connell probably said: > Christian Peter Gruendemann stated: > : Furthermore, is the Soundsystem (Yamaha YMF744B-R Chip) supported? > firmly crossed :), but you should be able to play music cd's and > waveplay and maybe xmms (not 100% sure on this). Yamaha chipsets do indeed work with xmms; pcm0: port 0xfc8c-0xfc8f,0xfcc0-0xfcff mem 0xfedf8000-0xfedfffff irq 9 at device 9.0 on pci0 Sounds great here. P. -- pir pir@pir.net pir@net.tufts.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 18:55:36 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mailgw02.execpc.com (mailgw02.execpc.com [169.207.3.78]) by hub.freebsd.org (Postfix) with ESMTP id 8A5F937B43E for ; Tue, 22 Aug 2000 18:55:33 -0700 (PDT) Received: from woodstock.monkey.net (d48.as9.nwbl0.wi.voyager.net [169.207.132.176]) by mailgw02.execpc.com (8.9.1) id UAA32723; Tue, 22 Aug 2000 20:55:24 -0500 Received: from pobox.com (localhost [127.0.0.1]) by woodstock.monkey.net (Postfix) with ESMTP id C2E8E137; Tue, 22 Aug 2000 20:55:22 -0500 (CDT) X-Mailer: exmh version 2.1.1 10/16/1999 To: Christian Peter Gruendemann Cc: mobile@FreeBSD.ORG Subject: Re: Netgear Re: Reflections on the Sony Vaio F709 (F590K ?) In-reply-to: Your message of "Wed, 23 Aug 2000 02:47:49 +0200." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 22 Aug 2000 20:55:22 -0500 From: Jon Hamilton Message-Id: <20000823015522.C2E8E137@woodstock.monkey.net> Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message , Christian Peter Gruendemann wrote: } } Hi, } } Today, I tried to install Freebsd 4.0 on a Toshiba Satellite Pro } 4360 notebook with a pcmcia } NetGear FA410 network card. I didn't manage it, and I think the network } card is not supported by FreeBSD 4.0 Release? The Netgear networkcard is } also not mentioned in the handbook. So, The card won't work, right? Newer versions of this card require some hackery to get working. It does work, but you have to run a seperate program to select speed and duplex on the card. Search the -mobile archives looking for fa_select and you should find everything you need. -- Jon Hamilton hamilton@pobox.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 21:42:50 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from vbook.express.ru (h70.37.elnet.msk.ru [195.58.37.70]) by hub.freebsd.org (Postfix) with ESMTP id 5DDD637B422; Tue, 22 Aug 2000 21:42:31 -0700 (PDT) Received: (from vova@localhost) by vbook.express.ru (8.9.3/8.9.3) id IAA00487; Wed, 23 Aug 2000 08:06:02 +0400 (MSD) (envelope-from vova) From: "Vladimir B. Grebenschikov" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14755.19881.656392.318411@vbook.express.ru> Date: Wed, 23 Aug 2000 08:06:01 +0400 (MSD) To: Nik Clayton Cc: mobile@FreeBSD.ORG Subject: Reflections on the Sony Vaio F709 (F590K ?) In-Reply-To: <20000822144436.A1306@canyon.nothing-going-on.org> References: <20000822144436.A1306@canyon.nothing-going-on.org> X-Mailer: VM 6.72 under 21.1 (patch 9) "Canyonlands" XEmacs Lucid Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Nik Clayton writes: > Overall it's a good solid machine, and it runs FreeBSD nicely. However, > there are a few niggles that prospective purchasers should be aware of. > FWIW, I'm running FreeBSD-current on it from about Thursday 17th August. > > First off, suspend to disk doesn't work. The F270 was great in this > respect. As shipped, it had a special partition at the end of the disk. > I didn't fiddle with this partition when I installed FreeBSD, and because > of this, I could suspend and resume to disk (or memory) until the cows > came home. I have same problem with my SONY VAIO Z505S > The 709 didn't have this partition when I received it. In addition, the > first time I booted it up (it had Windows pre-installed) it started up > PHDISK.EXE which informed me that it was prepping the suspend file. I > suspect that these machines now expect to be able to write to a file on > a FAT partition somewhere in order to successfully suspend. While this > does gain you back some disk space (on the order of whatever the maximum > physical memory you can install in to the machine), it means you can't > suspend to disk any more :-( Suspend to memory still works with no problems > however. But, whe I've asked in SONY support they say that PFDISK can configure both variant ov hybernation (suspend to disk) and send me instruction how to do this, If you need I can forward it to you. > Related to this, I can no longer press Fn+F2 to get a display of the > remaining battery life. On the F270 this bought up a graphic display > showing the life remaining, and whether or not it was running off AC > power. That feature's now gone. > > I'm hypothesising, but I suspect Fn+F2 is now supposed to trigger the OS > to do it's own display. When I ran Windows on the F270 it intercepted > the request and put up its own graphical display instead. For me Fn+F2 works great (battary status), but volume control did not work > I can still use tools like apm(8), and various X battery monitors, so it's > no great loss. Yes, apm works but shows twice more time to work than real power in battary. > Secondly, the internal modem doesn't seem to work with FreeBSD. It's > probed (along with the regular serial port) with no problems, as > > sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 > sio0: type 16550A > sio1: configured irq 3 not in bitmap of probed irqs 0 > sio2: configured irq 5 not in bitmap of probed irqs 0x404 > sio2 at port 0x3e8-0x3ef irq 5 on isa0 > sio2: type 16550A > sio3: configured irq 9 not in bitmap of probed irqs 0 it seems you see not modem, but IR-port I have sio0 at port 0x3f8-0x3ff irq 4 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A But, I've changed IR-port IRQ in BIOS setup for match this. > and I can tip(1) to cuaa2. But if I type anything the machine freezes. > The F270 didn't have an internal modem, so this wasn't a problem. I have > to hand a COM1 MC220 Modem Card, which has done sterling duty in the 270. > So I tried that instead. While it's detected by pccardd, it can't assign > a driver for it. So, for the time being, I'm using an external modem > in sio0. Sadly, there's no option to disable the internal modem in the > BIOS, and disabling the internal serial port didn't make any difference. I have no problem with PCMCI port, but I've need to specify io 0x240-0x360 irq 3 10 11 memory 0xd0000 96k in pccard.conf > Speaking of BIOS options, I tried compiling in USB support in to the kernel. > One of the boot messages then said that "PNPOS" in the BIOS needed to be > set to 'OFF' for this to work properly. It then continued booting up > properly. So I rebooted, set PNPOS to off in the BIOS, and tried to > bring FreeBSD up. It hung just after the IDE disk probes. . . for me USB support works too (FDD, Keyboard, Mouse) > And talking about hangs, "device pcm" works nicely in the F270, allowing > audio to work, MP3s to play (albeit they sound somewhat tinny). Not a > sausage on the F709. "device pcm" will cause the kernel to hang midway > through the boot. This is probably because the F709 uses a different > NeoMagic chipset to the one on the F270. Sound for me works well too, but when I've upgraded to -current It brokes, so I have to roll back to -stable -- TSB Russian Express, Moscow Vladimir B. Grebenschikov, vova@express.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 22: 3:14 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id F163637B423 for ; Tue, 22 Aug 2000 22:03:11 -0700 (PDT) Received: from rac5.wam.umd.edu (rac5.wam.umd.edu [128.8.10.145]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id BAA17145 for ; Wed, 23 Aug 2000 01:03:11 -0400 (EDT) Received: from rac5.wam.umd.edu (localhost [127.0.0.1]) by rac5.wam.umd.edu (8.9.3/8.9.3) with SMTP id BAA14861 for ; Wed, 23 Aug 2000 01:03:10 -0400 (EDT) Received: from localhost (culverk@localhost) by rac5.wam.umd.edu (8.9.3/8.9.3) with ESMTP id BAA14857 for ; Wed, 23 Aug 2000 01:03:10 -0400 (EDT) X-Authentication-Warning: rac5.wam.umd.edu: culverk owned process doing -bs Date: Wed, 23 Aug 2000 01:03:10 -0400 (EDT) From: Kenneth Wayne Culver To: freebsd-mobile@freebsd.org Subject: 3com fe575 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 got a dell laptop that came with an ethernet card that is the model # in the subject of this mail. I dind't see it in /etc/defaults/pccard.conf, so I'm asking if anyone has gotten it to work. Thanks ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 23: 4:21 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from dreamwvr.com (24.64.29.64.ab.wave.home.com [24.64.29.64]) by hub.freebsd.org (Postfix) with ESMTP id 5C93C37B423 for ; Tue, 22 Aug 2000 23:04:19 -0700 (PDT) Received: from tyr.dreamwvr.com (unknown [192.168.26.101]) by dreamwvr.com (Postfix) with SMTP id 2E3ED3486 for ; Wed, 23 Aug 2000 00:04:15 -0600 (MDT) From: dreamwvr To: mobile@FreeBSD.ORG Subject: dual booting FreeBSD Date: Wed, 23 Aug 2000 00:28:52 -0600 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain References: <20000822144436.A1306@canyon.nothing-going-on.org> <14755.19881.656392.318411@vbook.express.ru> In-Reply-To: <14755.19881.656392.318411@vbook.express.ru> MIME-Version: 1.0 Message-Id: <00082300324602.12541@tyr.dreamwvr.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, just wanted to say that am planning to run both FreeBSD and Linux on a Toshiba 4200 Pro series.. the install went fine;-)) now need to make lilo.conf understand there are 2 oses there.. then get te FreeBSD stuff working. Anyone that has done this before on such an animal and wants to share their experience on Toshiba laptops feel 'Free???' :-p Best Regards, dreamwvr@dreamwvr.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 22 23:10:28 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-202-177-115.dsl.snfc21.pacbell.net [63.202.177.115]) by hub.freebsd.org (Postfix) with ESMTP id 5330237B423 for ; Tue, 22 Aug 2000 23:10:26 -0700 (PDT) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id XAA24636; Tue, 22 Aug 2000 23:23:28 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200008230623.XAA24636@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: dreamwvr Cc: mobile@FreeBSD.ORG Subject: Re: dual booting FreeBSD In-reply-to: Your message of "Wed, 23 Aug 2000 00:28:52 MDT." <00082300324602.12541@tyr.dreamwvr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 22 Aug 2000 23:23:28 -0700 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > hi, > just wanted to say that am planning to run both FreeBSD and Linux on a Toshiba > 4200 Pro series.. the install went fine;-)) now need to make lilo.conf > understand there are 2 oses there.. then get te FreeBSD stuff working. > Anyone that has done this before on such an animal and wants to share > their experience on Toshiba laptops feel 'Free???' :-p Put Lilo in the first sector of the Linux partition, and use the FreeBSD boot selector instead. Much simpler. -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 0:19:58 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from zmail6.easynet.fr (email.easynet.fr [195.114.64.207]) by hub.freebsd.org (Postfix) with SMTP id 3279A37B42C for ; Wed, 23 Aug 2000 00:19:41 -0700 (PDT) Received: (qmail 66453 invoked from network); 23 Aug 2000 07:19:38 -0000 Received: from mailgate2.easynet.fr (192.168.1.3) by mailserver.easynet.fr with QMQP; 23 Aug 2000 07:19:38 -0000 Received: from adsl-92-1-170.pops.easynet.fr (HELO vobiscum.styx.org) (212.11.34.170) by mrelay2.easynet.fr with SMTP; 23 Aug 2000 07:19:38 -0000 Received: (from marc@localhost) by vobiscum.styx.org (8.9.3/8.9.3/ - 6/08/98) id JAA01642; Wed, 23 Aug 2000 09:22:46 +0200 (CEST) (envelope-from marc) Date: Wed, 23 Aug 2000 09:22:45 +0200 From: Marc Fonvieille To: Christian Peter Gruendemann Cc: freebsd-mobile@freebsd.org Subject: Re: Netgear Re: Reflections on the Sony Vaio F709 (F590K ?) Message-ID: <20000823092245.A848@vobiscum.styx.org> References: <200008222111.e7MLBF423146@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from chris.chris@fhtw-berlin.de on Wed, Aug 23, 2000 at 02:47:49AM +0200 X-Useless-Header: Black Metal inc. X-Operating-System: FreeBSD 4.1-STABLE Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Aug 23, 2000 at 02:47:49AM +0200, Christian Peter Gruendemann wrote: > > Hi, > > Today, I tried to install Freebsd 4.0 on a Toshiba Satellite Pro > 4360 notebook with a pcmcia > NetGear FA410 network card. I didn't manage it, and I think the network > card is not supported by FreeBSD 4.0 Release? The Netgear networkcard is > also not mentioned in the handbook. So, The card won't work, right? > There's problem with last model. Have a look to http://www.freebsddiary.org/last-netgear.html i put there all instructions. http://webperso.easynet.fr/fonvi/fa_select.c to download fa_select.c Marc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 0:27:49 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from Awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id EF25537B424 for ; Wed, 23 Aug 2000 00:27:44 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.awfulhak.org [172.16.0.12]) by Awfulhak.org (8.9.3/8.9.3) with ESMTP id GAA24371; Wed, 23 Aug 2000 06:42:44 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.0/8.11.0) with ESMTP id e7N5gK478561; Wed, 23 Aug 2000 06:42:20 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200008230542.e7N5gK478561@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: "Greg Smith" Cc: brian@Awfulhak.org, freebsd-mobile@freebsd.org, brian@Awfulhak.org Subject: Re: Reflections on the Sony Vaio F709 (F590K ?) In-Reply-To: Message from "Greg Smith" of "Tue, 22 Aug 2000 22:39:56 GMT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 23 Aug 2000 06:42:20 +0100 From: Brian Somers Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ah, thanks ! Now why didn't I think of just searching for it rather than trawling Sony's site :-/ > A quick search at altavista turned up the following: > > ftp://ftp.acerafrica.com/NOTEBOOKS/Current%20Acer%20Notebook%20Range/TM310/DRIVERS/WIN95/Phdisk.zip > > http://ftp.pbnec.nl/pub/itemnr/NECFIUP00040100/PHDISK.EXE > > etc. etc. > > Greg > > > >Brian Somers probably said: > > > I don't suppose anyone can mail me a copy of pfdisk.exe ? > > ________________________________________________________________________ > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com > > -- 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 Wed Aug 23 0:37:33 2000 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 976E637B42C for ; Wed, 23 Aug 2000 00:37:30 -0700 (PDT) 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 BAA63785; Wed, 23 Aug 2000 01:37:29 -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 BAA47462; Wed, 23 Aug 2000 01:37:17 -0600 (MDT) Message-Id: <200008230737.BAA47462@harmony.village.org> To: Erich Zigler Subject: Re: Simple Technology 16MB Compact Flash Card Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 22 Aug 2000 09:21:37 CDT." <20000822092137.A374@superhero.org> References: <20000822092137.A374@superhero.org> <20000821175655.A82963@superhero.org> <20000821165308.B50050@superhero.org> <20000820111627.A5271@superhero.org> <200008212145.PAA41160@harmony.village.org> <20000821165308.B50050@superhero.org> <200008212253.QAA41772@harmony.village.org> <20000821175655.A82963@superhero.org> <200008220106.TAA42871@harmony.village.org> Date: Wed, 23 Aug 2000 01:37:17 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000822092137.A374@superhero.org> Erich Zigler writes: : Thanks for your help, but that didn't work. Exact same symptoms as above. : (Im not going to retype them all here, go up a couple posts.) OK. So it isn't the vpp problem, which seems to happen only on a few machines.... I'm afraid that I'd need access to hardware that this is happening on to make further progress. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 0:40:49 2000 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 6667837B424 for ; Wed, 23 Aug 2000 00:40:47 -0700 (PDT) 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 BAA63809; Wed, 23 Aug 2000 01:40:45 -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 BAA47504; Wed, 23 Aug 2000 01:40:34 -0600 (MDT) Message-Id: <200008230740.BAA47504@harmony.village.org> To: Kenneth Wayne Culver Subject: Re: 3com fe575 Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 23 Aug 2000 01:03:10 EDT." References: Date: Wed, 23 Aug 2000 01:40:34 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Kenneth Wayne Culver writes: : I just got a dell laptop that came with an ethernet card that is the model : # in the subject of this mail. I dind't see it in : /etc/defaults/pccard.conf, so I'm asking if anyone has gotten it to : work. Thanks Yes, but the code isn't yet available :-) I've been handed some very interesting cardbus code in the last few days that dovetails well with NEWCARD.... I'm currently looking into that, so the cardbus drought days may be numbered. Wanrer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 5:39:59 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po4.wam.umd.edu (po4.wam.umd.edu [128.8.10.166]) by hub.freebsd.org (Postfix) with ESMTP id 2A14837B423 for ; Wed, 23 Aug 2000 05:39:56 -0700 (PDT) Received: from rac2.wam.umd.edu (rac2.wam.umd.edu [128.8.10.142]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id IAA15059; Wed, 23 Aug 2000 08:39:47 -0400 (EDT) Received: from rac2.wam.umd.edu (localhost [127.0.0.1]) by rac2.wam.umd.edu (8.9.3/8.9.3) with SMTP id IAA11516; Wed, 23 Aug 2000 08:39:47 -0400 (EDT) Received: from localhost (culverk@localhost) by rac2.wam.umd.edu (8.9.3/8.9.3) with ESMTP id IAA11512; Wed, 23 Aug 2000 08:39:47 -0400 (EDT) X-Authentication-Warning: rac2.wam.umd.edu: culverk owned process doing -bs Date: Wed, 23 Aug 2000 08:39:47 -0400 (EDT) From: Kenneth Wayne Culver To: Warner Losh Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: 3com fe575 In-Reply-To: <200008230740.BAA47504@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 so how long do you think it'll be before we see this comitted? And after that how long before I can install FreeBSD with this card? I need FreeBSD on this laptop for school, so the sooner the better :-) ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= On Wed, 23 Aug 2000, Warner Losh wrote: > In message Kenneth Wayne Culver writes: > : I just got a dell laptop that came with an ethernet card that is the model > : # in the subject of this mail. I dind't see it in > : /etc/defaults/pccard.conf, so I'm asking if anyone has gotten it to > : work. Thanks > > Yes, but the code isn't yet available :-) > > I've been handed some very interesting cardbus code in the last few > days that dovetails well with NEWCARD.... I'm currently looking into > that, so the cardbus drought days may be numbered. > > Wanrer > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 8:58:19 2000 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 5F36037B423 for ; Wed, 23 Aug 2000 08:58:17 -0700 (PDT) Received: from billy-club.village.org (billy-club.village.org [10.0.0.3]) by rover.village.org (8.9.3/8.9.3) with ESMTP id JAA65576; Wed, 23 Aug 2000 09:58:15 -0600 (MDT) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (localhost.village.org [127.0.0.1]) by billy-club.village.org (8.9.3/8.8.3) with ESMTP id JAA02202; Wed, 23 Aug 2000 09:57:20 -0600 (MDT) Message-Id: <200008231557.JAA02202@billy-club.village.org> To: Kenneth Wayne Culver Subject: Re: 3com fe575 Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 23 Aug 2000 08:39:47 EDT." References: Date: Wed, 23 Aug 2000 09:57:20 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Kenneth Wayne Culver writes: : so how long do you think it'll be before we see this comitted? And after : that how long before I can install FreeBSD with this card? I need FreeBSD : on this laptop for school, so the sooner the better :-) A little while yet. In the mean time, you can get a stopgap version that supports only the 3C375 which Jonathan Chen wrote a while ago. There's a link to it on my Advogato page (http://www.advogato.com, account name imp, don't have the exact link handy, my X world blew up last night with the installation of a new graphics card). Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 10:35: 4 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hotmail.com (f230.law9.hotmail.com [64.4.9.230]) by hub.freebsd.org (Postfix) with ESMTP id 4C19437B42C for ; Wed, 23 Aug 2000 10:34:58 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 23 Aug 2000 10:34:58 -0700 Received: from 63.195.114.87 by lw9fd.law9.hotmail.msn.com with HTTP; Wed, 23 Aug 2000 GMT X-Originating-IP: [63.195.114.87] From: "Greg Smith" To: freebsd-mobile@freebsd.org Subject: PCMCIA ATA HD's under FreeeBSD 4.1R Date: Wed, 23 Aug 2000 17:34:57 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 23 Aug 2000 17:34:58.0138 (UTC) FILETIME=[7521DBA0:01C00D28] Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org When trying my PCMCIA HD under FreeBSD 4.1R I noticed the following: 1) there was a VERY long time gap between when the drive was recognized on insertion, and when the drive was powered up and mountable (see timeline below) 2) I can power down (pccardc power 1 0) this drive without unmounting. unmounting afterwards causes panic fatal trap 12 (supervisor read, page not found) Number 1 is an inconvenience, and it would be nice to alter some settings somewhere to speed up the process since the machine seems to be locked up during the interval. Number 2, however, has me a little worried. This suggests that pccardc/d do not interact with the file system. That would imply that any uncommitted writes would not be flushed to the drive before the drive is powered down. [Please excuse my ignorance if Unix does not have the concept of delayed writes.] Thanks for you thoughts, Greg Smith ---timeline--- 9:44:38 [card physically inserted] 9:44:41 card inserted, slot 1 9:44:47 card ---- recognized 9:47:01 ata2 at port ---- 9:47:11 ata2-slave: ata_command: timeout waiting for intr 9:47:11 ata2-slave: identify failed [power up of drive] 9:47:15 ad4 248MB ---- at ata2-master using BIOSPIO 9:47:15 ata2: ---- inserted when repeating the above right afterwards the 0:02:14 delay was slightly changed to 0:02:12, so this was not a fluke. ---win95 timelines--- 9:55:00 [card physically inserted] 9:55:03 machine beeps 9:55:06 card powered up 9:55:12 card mounted automatically (contents shown) 9:55:30 [card power down requested] 9:55:33 card powered down 9:55:33 card unmounted automatically (contents disappear) the last two are probably simultaneous, except for the delay in redrawing the screen ---config--- device ata device atadisk ---pccard.conf--- io 0x110-0x160 0x180-0x1e0 0x230-0x2e0 0x300-0x320 0x340-0x360 irq 9 11 memory 0xd4000 96k # Integral Peripherals Viper HDD Series card "INTEGRAL PERIPHERALS" "ATA CARD" # config default "ata" ? config 0x01 "ata" ? iosize 16 logstr "Integral Peripherals ATA HD" ---fstab--- # Device Mountpoint FStype Options Dump Pass# /dev/ad0s2b none swap sw 0 0 /dev/ad0s2a / ufs rw 1 1 /dev/ad0s2f /usr ufs rw 2 2 /dev/ad0s2e /var ufs rw 2 2 proc /proc procfs rw 0 0 /dev/ad0s1 /c msdos rw 0 0 /dev/fd0 /a msdos rw,noauto 0 0 /dev/fd0 /b ufs rw,noauto 0 0 /dev/ad4s1 /d msdos rw,noauto 0 0 ________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail 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 Aug 23 11: 8:26 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po4.wam.umd.edu (po4.wam.umd.edu [128.8.10.166]) by hub.freebsd.org (Postfix) with ESMTP id 33EA037B423 for ; Wed, 23 Aug 2000 11:08:24 -0700 (PDT) Received: from rac1.wam.umd.edu (rac1.wam.umd.edu [128.8.10.141]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id OAA09007; Wed, 23 Aug 2000 14:08:17 -0400 (EDT) Received: from rac1.wam.umd.edu (localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id OAA23464; Wed, 23 Aug 2000 14:08:17 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id OAA23460; Wed, 23 Aug 2000 14:08:17 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Wed, 23 Aug 2000 14:08:17 -0400 (EDT) From: Kenneth Wayne Culver To: Warner Losh Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: 3com fe575 In-Reply-To: <200008231557.JAA02202@billy-club.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 > A little while yet. In the mean time, you can get a stopgap version > that supports only the 3C375 which Jonathan Chen wrote a while ago. > There's a link to it on my Advogato page (http://www.advogato.com, > account name imp, don't have the exact link handy, my X world blew up > last night with the installation of a new graphics card). How can I modify the install procedure to allow me to install using this card and driver? Do you know if that's possible? Or will I have to get someone to give me a 4.1 CD and install from that, and then grab the driver? Thanks a lot for your help. Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 11:17: 4 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from isris.pair.com (isris.pair.com [209.68.2.39]) by hub.freebsd.org (Postfix) with ESMTP id 7688037B423 for ; Wed, 23 Aug 2000 11:16:59 -0700 (PDT) Received: (from rooneg@localhost) by isris.pair.com (8.9.1/8.6.12) id OAA10909; Wed, 23 Aug 2000 14:16:54 -0400 (EDT) X-Envelope-To: freebsd-mobile@FreeBSD.ORG Message-ID: <20000823141654.A10365@electricjellyfish.net> Date: Wed, 23 Aug 2000 14:16:54 -0400 From: Garrett Rooney To: freebsd-mobile@FreeBSD.ORG Subject: Re: 3com fe575 Mail-Followup-To: freebsd-mobile@FreeBSD.ORG References: <200008231557.JAA02202@billy-club.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1 In-Reply-To: ; from Kenneth Wayne Culver on Wed, Aug 23, 2000 at 02:08:17PM -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Aug 23, 2000 at 02:08:17PM -0400, Kenneth Wayne Culver wrote: > How can I modify the install procedure to allow me to install using this > card and driver? Do you know if that's possible? Or will I have to get > someone to give me a 4.1 CD and install from that, and then grab the > driver? Thanks a lot for your help. well, i imagine you could build custom boot floppies with the driver compiled in, assuming you have access to another FreeBSD machine, but honestly, you're probably better off finding a 4.1 cd and installing off that, then messing around with the ethernet. IMHO, you'll probably spend less time finding a cd than you would trying to build the floppies. -- garrett rooney my pid is inigo montoya. rooneg@electricjellyfish.net you kill -9 my parent process. http://electricjellyfish.net/ prepare to vi. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 11:21:54 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po4.wam.umd.edu (po4.wam.umd.edu [128.8.10.166]) by hub.freebsd.org (Postfix) with ESMTP id 2059637B424 for ; Wed, 23 Aug 2000 11:21:52 -0700 (PDT) Received: from rac1.wam.umd.edu (rac1.wam.umd.edu [128.8.10.141]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id OAA09782; Wed, 23 Aug 2000 14:21:34 -0400 (EDT) Received: from rac1.wam.umd.edu (localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id OAA26434; Wed, 23 Aug 2000 14:21:34 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id OAA26430; Wed, 23 Aug 2000 14:21:34 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Wed, 23 Aug 2000 14:21:34 -0400 (EDT) From: Kenneth Wayne Culver To: Garrett Rooney Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: 3com fe575 In-Reply-To: <20000823141654.A10365@electricjellyfish.net> 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 > > How can I modify the install procedure to allow me to install using this > > card and driver? Do you know if that's possible? Or will I have to get > > someone to give me a 4.1 CD and install from that, and then grab the > > driver? Thanks a lot for your help. > > well, i imagine you could build custom boot floppies with the driver > compiled in, assuming you have access to another FreeBSD machine, but > honestly, you're probably better off finding a 4.1 cd and installing off > that, then messing around with the ethernet. IMHO, you'll probably > spend less time finding a cd than you would trying to build the > floppies. > I think the diffs for that driver are for -CURRENT. I have another -CURRENT machine that I'm working on some drivers for various things on... I guess I could modify that kernel.. I've messed with the floppies before and gotten them to install properly... so I shouldn't have much of a problem. Next after that is getting the ESS maestro 3i to work :-) Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 11:22:29 2000 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 EA18E37B42C for ; Wed, 23 Aug 2000 11:22:26 -0700 (PDT) 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 MAA66441; Wed, 23 Aug 2000 12:22:25 -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 MAA51243; Wed, 23 Aug 2000 12:22:13 -0600 (MDT) Message-Id: <200008231822.MAA51243@harmony.village.org> To: Kenneth Wayne Culver Subject: Re: 3com fe575 Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 23 Aug 2000 14:08:17 EDT." References: Date: Wed, 23 Aug 2000 12:22:13 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Kenneth Wayne Culver writes: : How can I modify the install procedure to allow me to install using this : card and driver? Do you know if that's possible? Or will I have to get : someone to give me a 4.1 CD and install from that, and then grab the : driver? Thanks a lot for your help. I think you'll need to grab a 4.1 CDROM and install off of that, or install via the net with a supported NIC card. You'd then need to grab the patches from Jonathan Chen. My advogato page is at http://www.advogato.org/person/imp/ and the patches are available from ftp://ftp.spock.org/pub/cardbus.diff.latest Jonathan Chen also has written a cardbus module that looks like it will integrate into newcard as soon as I work out the bugs there. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 11:29:33 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po4.wam.umd.edu (po4.wam.umd.edu [128.8.10.166]) by hub.freebsd.org (Postfix) with ESMTP id 6577837B42C for ; Wed, 23 Aug 2000 11:29:25 -0700 (PDT) Received: from rac1.wam.umd.edu (rac1.wam.umd.edu [128.8.10.141]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id OAA10354; Wed, 23 Aug 2000 14:29:22 -0400 (EDT) Received: from rac1.wam.umd.edu (localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id OAA28667; Wed, 23 Aug 2000 14:29:22 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id OAA28663; Wed, 23 Aug 2000 14:29:22 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Wed, 23 Aug 2000 14:29:21 -0400 (EDT) From: Kenneth Wayne Culver To: Warner Losh Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: 3com fe575 In-Reply-To: <200008231822.MAA51243@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 > I think you'll need to grab a 4.1 CDROM and install off of that, or > install via the net with a supported NIC card. You'd then need to > grab the patches from Jonathan Chen. My advogato page is at > http://www.advogato.org/person/imp/ > and the patches are available from > ftp://ftp.spock.org/pub/cardbus.diff.latest I don't have a supported nic, but I think I could do this: I could build a release image with the changes from the kernel in it... on -CURRENT and install -CURRENT on the laptop. I don't mind doing that because I was eventually going to put -CURRENT on there anyway. I've messed with the install procedure before and I think I can get it to work like this. If I can't get it to work, I guess I'll just do the 4.1 CD option. Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 11:45:51 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from dreamwvr.com (24.64.29.64.ab.wave.home.com [24.64.29.64]) by hub.freebsd.org (Postfix) with ESMTP id 06D2337B424 for ; Wed, 23 Aug 2000 11:45:35 -0700 (PDT) Received: from tyr.dreamwvr.com (unknown [192.168.26.101]) by dreamwvr.com (Postfix) with SMTP id 9BE833486 for ; Wed, 23 Aug 2000 12:45:33 -0600 (MDT) From: dreamwvr To: freebsd-mobile@FreeBSD.ORG Subject: Xircom PCMCIA Date: Wed, 23 Aug 2000 13:12:21 -0600 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain References: In-Reply-To: MIME-Version: 1.0 Message-Id: <0008231314090H.12541@tyr.dreamwvr.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, gather that a Realport Ethernet 10/100+Modem 56k Mulifunctional 16 bit PCMCIA card works fine. model REM56G-100BTX ?? TIA dreamwvr@dreamwvr.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 11:48:58 2000 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 5272737B443 for ; Wed, 23 Aug 2000 11:48:35 -0700 (PDT) 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 MAA66574; Wed, 23 Aug 2000 12:48:34 -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 MAA51470; Wed, 23 Aug 2000 12:48:21 -0600 (MDT) Message-Id: <200008231848.MAA51470@harmony.village.org> To: Kenneth Wayne Culver Subject: Re: 3com fe575 Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 23 Aug 2000 14:29:21 EDT." References: Date: Wed, 23 Aug 2000 12:48:21 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Kenneth Wayne Culver writes: : > I think you'll need to grab a 4.1 CDROM and install off of that, or : > install via the net with a supported NIC card. You'd then need to : > grab the patches from Jonathan Chen. My advogato page is at : > http://www.advogato.org/person/imp/ : > and the patches are available from : > ftp://ftp.spock.org/pub/cardbus.diff.latest : : I don't have a supported nic, but I think I could do this: I could build a : release image with the changes from the kernel in it... on -CURRENT and : install -CURRENT on the laptop. I don't mind doing that because I was : eventually going to put -CURRENT on there anyway. I've messed with the : install procedure before and I think I can get it to work like this. You could do that as well. : If I can't get it to work, I guess I'll just do the 4.1 CD option. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 16:44:23 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from auemail2.firewall.lucent.com (auemail2.lucent.com [192.11.223.163]) by hub.freebsd.org (Postfix) with ESMTP id 487C237B619 for ; Wed, 23 Aug 2000 16:44:21 -0700 (PDT) Received: from auemail2.firewall.lucent.com (localhost [127.0.0.1]) by auemail2.firewall.lucent.com (Pro-8.9.3/8.9.3) with ESMTP id TAA19393 for ; Wed, 23 Aug 2000 19:44:20 -0400 (EDT) Received: from mhmail.mh.lucent.com (h135-3-115-8.lucent.com [135.3.115.8]) by auemail2.firewall.lucent.com (Pro-8.9.3/8.9.3) with ESMTP id TAA19389 for ; Wed, 23 Aug 2000 19:44:20 -0400 (EDT) Received: from lucent.com (positron.micro.lucent.com [192.19.56.129]) by mhmail.mh.lucent.com (8.8.8+Sun/EMS-1.5 sol2) id TAA20556; Wed, 23 Aug 2000 19:44:17 -0400 (EDT) Message-ID: <39A461BA.B8E3E3AC@lucent.com> Date: Wed, 23 Aug 2000 19:43:54 -0400 From: "Gary T. Corcoran" Organization: Lucent Microelectronics - Client Access Broadband Systems X-Mailer: Mozilla 4.73 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-mobile@freebsd.org Subject: How to change link speed/duplex on a 3Com 3CCFE574BT ? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I managed to get my 3Com 3CCFE574BT 10/100 ethernet PC-Card going on FreeBSD 4.1 when connected to a 100Mb hub, but I still have one problem. I sometimes need to connect to a 10Mb network, and then the card doesn't work. No green light, no connectivity. How does one change the link speed and/or duplex settings for this card? I tried using the 'media' argument to ifconfig, but every keyword after 'media' seems to be rejected, as if 'media' is not supported for this card. I then tried using the older 'link' flags, 0, 1 and 2, and all eight combinations didn't seem to make any difference. So what's the magic incantation? ;-) Thanks, Gary -- ========================================================= Gary Corcoran - Distinguished Member of Technical Staff Lucent Microelectronics - Client Access Broadband Systems Communications Protocol & Driver Development Group "We make the drivers that make communications work" Email: gcorcoran@lucent.com --------------------------------------------------------- "No brains, no service." ========================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 17: 8:19 2000 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 CE45C37B688 for ; Wed, 23 Aug 2000 17:08:14 -0700 (PDT) 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 SAA67824; Wed, 23 Aug 2000 18:08:13 -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 SAA53460; Wed, 23 Aug 2000 18:08:00 -0600 (MDT) Message-Id: <200008240008.SAA53460@harmony.village.org> To: "Greg Smith" Subject: Re: PCMCIA ATA HD's under FreeeBSD 4.1R Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 23 Aug 2000 17:34:57 GMT." References: Date: Wed, 23 Aug 2000 18:08:00 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message "Greg Smith" writes: : 2) I can power down (pccardc power 1 0) this drive without unmounting. : unmounting afterwards causes panic fatal trap 12 (supervisor read, page not : found) Don't do that. :-) It currently isn't supported. It should be, but not in the way you think. When the drive goes away, it is gone and the umounting shouldn't cause a panic, but should issue a warning that the underlying device is gon. : Number 1 is an inconvenience, and it would be nice to alter some settings : somewhere to speed up the process since the machine seems to be locked up : during the interval. The problem is that some ata devices lie and say there are two devices when in fact there's only one. Soren tried to fix this, but there were some problems he ran into and backed it out. : Number 2, however, has me a little worried. This : suggests that pccardc/d do not interact with the file system. That would : imply that any uncommitted writes would not be flushed to the drive before : the drive is powered down. [Please excuse my ignorance if Unix does not : have the concept of delayed writes.] Generally speaking, pccard shouldn't interact with the file system. It shouldn't sneak its tendrils into that if it can be avoided. The basic problem is that there's no way of knowing if you've reinserted the same disk, or disk that is similar. If you've inserted the same disk, then it should flush. If you haven't, then it shouldn't. The disk subsystem has no way of knowing, for sure, which is which. ata should refuse to write, in a manner similar to CAM, the disk blocks when the drive goes away. CAM has an advantage over the ata pccard stuff. The SCSI drives do have serial numbers. ata flash don't appear to, and in any event it doesn't look like hot plug concents are in the ata drivers (I could be wrong, but that's what it appears). I've not looked into this problem since I'm not the ata driver maintainer and I've been focused on NEWCARD. : 9:47:11 ata2-slave: ata_command: timeout waiting for intr : 9:47:11 ata2-slave: identify failed This is where the controller is lying to the OS, or there's an OS bug. Soren thinks that the device is lying to the driver. He's suggested a flag that says "don't probe slave" or "don't probe master" despite what the device claims. He may be right in our needing this. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 17: 9:23 2000 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 9345937B628 for ; Wed, 23 Aug 2000 17:09:20 -0700 (PDT) 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 SAA67840; Wed, 23 Aug 2000 18:09:19 -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 SAA53494; Wed, 23 Aug 2000 18:09:06 -0600 (MDT) Message-Id: <200008240009.SAA53494@harmony.village.org> To: dreamwvr Subject: Re: Xircom PCMCIA Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 23 Aug 2000 13:12:21 MDT." <0008231314090H.12541@tyr.dreamwvr.com> References: <0008231314090H.12541@tyr.dreamwvr.com> Date: Wed, 23 Aug 2000 18:09:05 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <0008231314090H.12541@tyr.dreamwvr.com> dreamwvr writes: : gather that a Realport Ethernet 10/100+Modem 56k : Mulifunctional 16 bit PCMCIA card works fine. : model REM56G-100BTX ?? I think that this will work, but haven't tried one of these. I have only an old Xircom card to do testing with. And it doesn't work too well. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 23 17:11: 9 2000 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 71AEB37B628 for ; Wed, 23 Aug 2000 17:11:07 -0700 (PDT) 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 SAA67852; Wed, 23 Aug 2000 18:11:05 -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 SAA53518; Wed, 23 Aug 2000 18:10:52 -0600 (MDT) Message-Id: <200008240010.SAA53518@harmony.village.org> To: "Gary T. Corcoran" Subject: Re: How to change link speed/duplex on a 3Com 3CCFE574BT ? Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 23 Aug 2000 19:43:54 EDT." <39A461BA.B8E3E3AC@lucent.com> References: <39A461BA.B8E3E3AC@lucent.com> Date: Wed, 23 Aug 2000 18:10:52 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <39A461BA.B8E3E3AC@lucent.com> "Gary T. Corcoran" writes: : I managed to get my 3Com 3CCFE574BT 10/100 ethernet PC-Card going on : FreeBSD 4.1 when connected to a 100Mb hub, but I still have one problem. : I sometimes need to connect to a 10Mb network, and then the card doesn't : work. No green light, no connectivity. How does one change the link : speed and/or duplex settings for this card? I tried using the 'media' : argument to ifconfig, but every keyword after 'media' seems to be rejected, : as if 'media' is not supported for this card. I then tried using the older : 'link' flags, 0, 1 and 2, and all eight combinations didn't seem to make : any difference. So what's the magic incantation? ;-) ifconfig ep0 media 10baseT/UTP should do the trick. At least it does for the rl driver here at work. The cards we're using has a poor autonegitation skills (don't know if this is a driver or a device issue, since I moved on to other problems after discovering the workaround). Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 5:13: 3 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 222D637B42C for ; Thu, 24 Aug 2000 05:13:02 -0700 (PDT) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id IAA09322 for mobile@freebsd.org; Thu, 24 Aug 2000 08:13:01 -0400 (EDT) (envelope-from mwlucas) From: Michael Lucas Message-Id: <200008241213.IAA09322@blackhelicopters.org> Subject: Sony Vaio PCG-F520 (again) To: mobile@freebsd.org Date: Thu, 24 Aug 2000 08:13:01 -0400 (EDT) X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org My brain seems to recall this coming across the list earlier this week or last, and I deleted it without reading. Of course, today I learn I have $1500 to spend on a new laptop. :) So, is anyone using the Sony Vaio PCG-F520 with FreeBSD? I plan to shrink Windows down to 2 gig, run the rest FreeBSD, and play with Wine and bochs some. So, I need X and the modem. Private replies are fine, especially if this has already come across the list lately. Sorry to bother you all again, but the list archives are empty on this model. ==ml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 7:17:33 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from gate.consol.de (gate.consol.de [194.221.87.10]) by hub.freebsd.org (Postfix) with ESMTP id 52E4237B43E for ; Thu, 24 Aug 2000 07:17:21 -0700 (PDT) X-Envelope-Sender-Is: Michael.Elbel@consol.de (at relayer gate.consol.de) Received: from msgsrv.bb.consol.de (msgsrv.bb.consol.de [10.250.0.100]) by gate.consol.de (8.9.3/8.9.3) with ESMTP id QAA99013 for ; Thu, 24 Aug 2000 16:17:20 +0200 (CEST) (envelope-from Michael.Elbel@consol.de) Received: from vscanner.bb.consol.de (root@vscanner.bb.consol.de [10.250.0.120]) by msgsrv.bb.consol.de (8.8.8/8.8.8) with ESMTP id PAA22077 for ; Thu, 24 Aug 2000 15:20:49 +0200 Received: from fourier.int.consol.de (fourier.int.consol.de [10.0.1.17]) by vscanner.bb.consol.de (8.9.3/8.9.3) with ESMTP id QAA25486 for ; Thu, 24 Aug 2000 16:16:40 +0200 Received: (from me@localhost) by fourier.int.consol.de (8.11.0/8.9.3) id e7OEGeo35999 for mobile@freebsd.org; Thu, 24 Aug 2000 16:16:40 +0200 (CEST) (envelope-from me) Date: Thu, 24 Aug 2000 16:16:40 +0200 X-Amavis-approved: Yes From: Michael Elbel To: mobile@freebsd.org Subject: Ricoh RL5C476 PCI-CardBus Bridge doesn't see card changes Message-ID: <20000824161639.C35337@consol.de> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="HcAYCG3uE/tztfnV" Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --HcAYCG3uE/tztfnV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I have this nice new Asus L8400 Notebook. Works quite well with FreeBSD. There's one quirk with its card bus controller though. It will not recognize card insertions / removals. If the card is there when the machine boots, everything is fine so I'd guess it shouldn't be interrupt mismatches or so. However, if I remove the card, pccardc doesn't see it. Insertions don't get detected either. This is with 4.0, 4.1 and 4.1-Stable as of today. Has anybody seen something like that before? Any pointers as to in what direction I should look? I've appended the output of a boot -v in case anybody is interested. Thanks ahead, Michael -- /bin/bash: randsig1.pl: command not found --HcAYCG3uE/tztfnV Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="dmesg.out" Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.1-STABLE #0: Thu Aug 24 15:22:20 CEST 2000 me@pogo:/usr/obj/usr/src/sys/pogo Calibrating clock(s) ... TSC clock: 601371519 Hz, i8254 clock: 1193197 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method CPU: Pentium III/Pentium III Xeon/Celeron (601.37-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x681 Stepping = 1 Features=0x387f9ff real memory = 201261056 (196544K bytes) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) 0x002df000 - 0x0bfe7fff, 198217728 bytes (48393 pages) avail memory = 193060864 (188536K bytes) bios32: Found BIOS32 Service Directory header at 0xc00f7050 bios32: Entry = 0xfd792 (c00fd792) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0x216 pnpbios: Found PnP BIOS data at 0xc00f7080 pnpbios: Entry = f0000:af87 Rev = 1.0 Other BIOS signatures found: ACPI: 000f7030 Preloaded elf kernel "kernel" at 0xc02c6000. Pentium Pro MTRR support enabled pci_open(1): mode 1 addr port (0x0cf8) is 0x80003904 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=71908086) apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pci_open(1): mode 1 addr port (0x0cf8) is 0x80003b40 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=71908086) pcib0: on motherboard found-> vendor=0x8086, dev=0x7190, revid=0x03 class=06-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[10]: type 1, range 32, base f8000000, size 26 found-> vendor=0x8086, dev=0x7191, revid=0x03 class=06-04-00, hdrtype=0x01, mfdev=0 subordinatebus=1 secondarybus=1 found-> vendor=0x12eb, dev=0x0003, revid=0x03 class=04-01-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=10 map[10]: type 1, range 32, base fedc0000, size 18 map[14]: type 1, range 32, base 0000fcc0, size 3 map[18]: type 3, range 32, base 0000fcc8, size 3 found-> vendor=0x8086, dev=0x7110, revid=0x02 class=06-01-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 found-> vendor=0x8086, dev=0x7111, revid=0x01 class=01-01-80, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[20]: type 1, range 32, base 0000fcd0, size 4 found-> vendor=0x8086, dev=0x7112, revid=0x01 class=0c-03-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=d, irq=9 map[20]: type 1, range 32, base 0000fce0, size 5 found-> vendor=0x8086, dev=0x7113, revid=0x03 class=06-80-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[90]: type 1, range 32, base 00002180, size 4 found-> vendor=0x10ec, dev=0x8139, revid=0x10 class=02-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=9 map[10]: type 1, range 32, base 0000f800, size 8 map[14]: type 1, range 32, base fedbfc00, size 8 found-> vendor=0x1180, dev=0x0476, revid=0x80 class=06-07-00, hdrtype=0x02, mfdev=1 subordinatebus=0 secondarybus=0 intpin=a, irq=255 found-> vendor=0x1180, dev=0x0476, revid=0x80 class=06-07-00, hdrtype=0x02, mfdev=1 subordinatebus=0 secondarybus=0 intpin=b, irq=255 pci0: on pcib0 pcib1: at device 1.0 on pci0 found-> vendor=0x5333, dev=0x8c10, revid=0x11 class=03-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=9 map[10]: type 1, range 32, base f0000000, size 27 pci1: on pcib1 pci1: (vendor=0x5333, dev=0x8c10) at 0.0 irq 9 pci0: (vendor=0x12eb, dev=0x0003) at 6.0 irq 10 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfcd0-0xfcdf at device 7.1 on pci0 ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0xfcd0 ata0: mask=03 status0=50 status1=50 ata0: mask=03 status0=50 status1=00 ata0: devices = 0x9 ata0: at 0x1f0 irq 14 on atapci0 ata1: iobase=0x0170 altiobase=0x0376 bmaddr=0xfcd8 ata1: mask=00 status0=a5 status1=a5 ata1: probe allocation failed pci0: (vendor=0x8086, dev=0x7112) at 7.2 irq 9 chip1: port 0x2180-0x218f at device 7.3 on pci0 rl0: port 0xf800-0xf8ff mem 0xfedbfc00-0xfedbfcff irq 9 at device 8.0 on pci0 rl0: Ethernet address: 00:e0:18:18:53:3a miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto bpf: rl0 attached pcic-pci0: at device 10.0 on pci0 pcic-pci0: Legacy address set to 0x3e0 PCI Config space: 00: 04761180 02100007 06070080 00820000 10: 00000000 020000dc 00000000 00000000 20: 00000000 00000000 00000000 00000000 30: 00000000 00000000 00000000 008001ff 40: 10441043 000003e1 00000000 00000000 50: 00000000 00000000 00000000 00000000 60: 00000000 00000000 00000000 00000000 70: 00000000 00000000 00000000 00000000 80: 00a00000 00000000 04630463 30000000 90: 00740000 00000000 00000000 00000000 Cardbus Socket registers: 00: f000ff53: f000ff53: f000e2c3: f000ff53: 10: f000ff53: f000ff54: f000a569: f000ff53: ExCa registers: 00: 13 88 f5 5a 72 d0 80 e1 3f 74 c8 fa 66 8b 46 08 10: 52 66 0f b6 d9 66 31 d2 66 f7 f3 88 eb 88 d5 43 20: 30 d2 66 f7 f3 88 d7 5a 66 3d ff 03 00 00 fb 77 30: a2 86 c4 c0 c8 02 08 e8 40 91 88 fe 28 e0 8a 66 pcic-pci1: at device 10.1 on pci0 PCI Config space: 00: 04761180 02100007 06070080 00820000 10: 00000000 020000dc 00000000 00000000 20: 00000000 00000000 00000000 00000000 30: 00000000 00000000 00000000 008002ff 40: 10441043 000003e1 00000000 00000000 50: 00000000 00000000 00000000 00000000 60: 00000000 00000000 00000000 00000000 70: 00000000 00000000 00000000 00000000 80: 00a00000 00000000 04630463 30000000 90: 00000000 00000000 00000000 00000000 Cardbus Socket registers: 00: f000ff53: f000ff53: f000e2c3: f000ff53: 10: f000ff53: f000ff54: f000a569: f000ff53: ExCa registers: 00: 13 88 f5 5a 72 d0 80 e1 3f 74 c8 fa 66 8b 46 08 10: 52 66 0f b6 d9 66 31 d2 66 f7 f3 88 eb 88 d5 43 20: 30 d2 66 f7 f3 88 d7 5a 66 3d ff 03 00 00 fb 77 30: a2 86 c4 c0 c8 02 08 e8 40 91 88 fe 28 e0 8a 66 ata-: ata0 exists, using next available unit number ata-: ata1 exists, using next available unit number Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ata3: iobase=0x0170 altiobase=0x0376 bmaddr=0x0000 ata3: mask=00 status0=a5 status1=a5 ata3: probe allocation failed atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0045 atkbd: keyboard ID 0x41ab (2) kbdc: RESET_KBD return code:00fa kbdc: RESET_KBD status:00aa kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x3d0000 psm0: current command byte:0045 kbdc: TEST_AUX_PORT status:0000 kbdc: RESET_AUX return code:00fa kbdc: RESET_AUX status:00aa kbdc: RESET_AUX ID:0000 psm: status 00 02 64 psm: status 00 00 64 psm: status 00 03 64 psm: status 00 03 64 psm: data 08 00 00 psm: status 10 00 64 psm: status 00 02 64 psm: data 08 00 00 psm: status 00 02 64 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0-00, 2 buttons psm0: config:00000000, flags:00000000, packet size:3 psm0: syncmask:c0, syncbits:00 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 fb0: vga0, vga, type:VGA (5), flags:0x7007f fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000 fb0: init mode:24, bios mode:3, current mode:24 fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k VGA parameters upon power-up 50 18 10 00 00 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 06 90 9c 0e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff VGA parameters in BIOS for mode 24 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff EGA/VGA parameters to be used for mode 24 50 18 10 00 00 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 06 90 9c 0e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) pcic0: at port 0x3e0 iomem 0xd0000 irq 10 on isa0 pcic0: management irq 10 pccard0: on pcic0 pccard1: on pcic0 sio0: irq maps: 0x41 0x51 0x41 0x41 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: irq maps: 0x41 0x49 0x41 0x41 sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: parallel port found at 0x378 ppc0: using extended I/O port range ppc0: SPP ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode lpt0: on ppbus0 lpt0: Interrupt-driven port isa_probe_children: probing PnP devices BIOS Geometries: 0:03feef3f 0..1022=1023 cylinders, 0..239=240 heads, 1..63=63 sectors 0 accounted for Device configuration finished. bpf: lo0 attached ata0-master: DMA limited to UDMA33, non-ATA66 compliant cable ata0-master: success setting UDMA2 on PIIX4 chip ad0: ATA-4 disk at ata0 as master ad0: 11513MB (23579136 sectors), 23392 cyls, 16 heads, 63 S/T, 512 B/S ad0: 16 secs/int, 1 depth queue, UDMA33 ad0: piomode=4 dmamode=2 udmamode=4 cblid=0 Creating DISK ad0 Creating DISK wd0 ata0-slave: piomode=4 dmamode=2 udmamode=2 dmaflag=1 ata0-slave: success setting UDMA2 on PIIX4 chip acd0: DVD-ROM drive at ata0 as slave acd0: read 4134KB/s (4134KB/s), 128KB buffer, UDMA33 acd0: Reads: CD-R, CD-RW, CD-DA stream, DVD-ROM, DVD-R acd0: Audio: play, 16 volume levels acd0: Mechanism: ejectable tray acd0: Medium: no/blank disc inside, unlocked Mounting root from ufs:/dev/ad0s2a pccard: card inserted, slot 0 ad0s1: type 0xb, start 63, end = 14333759, size 14333697 : OK ad0s2: type 0xa5, start 14333760, end = 23148719, size 8814960 : OK ad0s4: type 0xa0, start 23148720, end = 23572079, size 423360 : OK start_init: trying /sbin/init pcic: I/O win 0 flags 15 280-2bf pcic: I/O win 0 flags 5 280-2bf wi0: at port 0x280-0x2bf irq 11 slot 0 on pccard0 pcic: I/O win 0 flags 15 280-2bf wi0: Ethernet address: 00:60:1d:1c:5e:43 bpf: wi0 attached Linux-ELF exec handler installed arp: 10.0.1.1 is on rl0 but got reply from 00:d0:b7:0e:c6:47 on wi0 --HcAYCG3uE/tztfnV-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 10:21: 3 2000 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 AE80B37B424 for ; Thu, 24 Aug 2000 10:21:00 -0700 (PDT) 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 LAA71256; Thu, 24 Aug 2000 11:20:59 -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 LAA10638; Thu, 24 Aug 2000 11:20:57 -0600 (MDT) Message-Id: <200008241720.LAA10638@harmony.village.org> To: Martin Dieringer Subject: Re: 3com fe575 Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 24 Aug 2000 18:09:52 +0200." References: Date: Thu, 24 Aug 2000 11:20:57 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Martin Dieringer writes: : but these are for TI1251A only? do you think there is a way to use them for : a TI 1250 (Thinkpad 600), or would this be too much to change? The 1250 and 1251A are almost interchangible parts, so it shouldn't be too bad. Likely adding the PCI ID for the 1250 is all that's needed. : btw.: can you tell my why I can't post to freebsd.org-lists from my dialup : machine, even through my ISP's relay? (no FQDN, I assume, but how can I have : this with dynamic ip?) No clue. Likely the ISP's relay doesn't have a FQDN either. There was a thread on this on -arch not too long ago. : and why can't I get through to ftp.spock.org from this machine : (now 193.158.160.215), but from any other? That I don't know. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 11:36:47 2000 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 F2CDC37B424 for ; Thu, 24 Aug 2000 11:36:44 -0700 (PDT) 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 MAA71607; Thu, 24 Aug 2000 12:36:43 -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 MAA11265; Thu, 24 Aug 2000 12:36:40 -0600 (MDT) Message-Id: <200008241836.MAA11265@harmony.village.org> To: Michael Elbel Subject: Re: Ricoh RL5C476 PCI-CardBus Bridge doesn't see card changes Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 24 Aug 2000 16:16:40 +0200." <20000824161639.C35337@consol.de> References: <20000824161639.C35337@consol.de> Date: Thu, 24 Aug 2000 12:36:40 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000824161639.C35337@consol.de> Michael Elbel writes: : or so. However, if I remove the card, pccardc doesn't see it. Insertions : don't get detected either. Yuo are assinging a IRQ that's used for something else to the management IRQ of pcic. Try polling mode. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 11:40:41 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by hub.freebsd.org (Postfix) with ESMTP id D7F4437B43C for ; Thu, 24 Aug 2000 11:40:39 -0700 (PDT) Received: from randy by rip.psg.com with local (Exim 3.13 #1) id 13S1va-0000FI-00 for freebsd-mobile@freebsd.org; Thu, 24 Aug 2000 11:40:38 -0700 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: FreeBSD Laptoppers Subject: oddity when going from wi to ep on pao 3.5 Message-Id: Date: Thu, 24 Aug 2000 11:40:38 -0700 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org sony 505tx with 3.5+pao if i was running wi (lucent silver) and then go to ep (3c589c), it will o not succeed with dhcp o i can down/up the interface and then - it will dhcp - and get about ten seconds of packets through - then the interface is inop again it runs fine with wi for days it runs fine with ep for days it goes from ep to wi just fine the problem is only when going from wi to ep. randy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 15:47:13 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id 03B1F37B422 for ; Thu, 24 Aug 2000 15:47:12 -0700 (PDT) Received: from rac2.wam.umd.edu (rac2.wam.umd.edu [128.8.10.142]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id SAA05782 for ; Thu, 24 Aug 2000 18:47:11 -0400 (EDT) Received: from rac2.wam.umd.edu (localhost [127.0.0.1]) by rac2.wam.umd.edu (8.9.3/8.9.3) with SMTP id SAA15371 for ; Thu, 24 Aug 2000 18:47:10 -0400 (EDT) Received: from localhost (culverk@localhost) by rac2.wam.umd.edu (8.9.3/8.9.3) with ESMTP id SAA15367 for ; Thu, 24 Aug 2000 18:47:10 -0400 (EDT) X-Authentication-Warning: rac2.wam.umd.edu: culverk owned process doing -bs Date: Thu, 24 Aug 2000 18:47:10 -0400 (EDT) From: Kenneth Wayne Culver To: freebsd-mobile@freebsd.org Subject: fe575 (again) 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 does anything new need to go in pccard.conf to allow the fe575 to work? It should be detected with the xl driver should it not? Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 15:56:10 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from peorth.iteration.net (peorth.iteration.net [208.190.180.178]) by hub.freebsd.org (Postfix) with ESMTP id ADFE937B424; Thu, 24 Aug 2000 15:55:40 -0700 (PDT) Received: by peorth.iteration.net (Postfix, from userid 1000) id 0981564C2F; Thu, 24 Aug 2000 17:55:37 -0500 (CDT) Date: Thu, 24 Aug 2000 17:55:37 -0500 From: "Michael C. Wu" To: freebsd-mobile@freebsd.org, cg@freebsd.org Subject: VAIO Z505JS Reports and Questions Message-ID: <20000824175536.D1353@peorth.iteration.net> Mail-Followup-To: "Michael C. Wu" , freebsd-mobile@freebsd.org, cg@freebsd.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi all, I recently purchased a Sony VAIO Z505JS along with the DVD-ROM that Sony sells to the Z series customers. Running the 20000815-Current snapshot from current.freebsd.org PCM worked right away after compiling it in. Perfectly well playing mp3's and .wavs. XFree86 3.3.6 and 4.0.1 did not detect/support the NeoMagicXL+ (aka NeoMagic 2380). Thanks to Ollivier's pointer, I put : Chipset "NM2200" And now X-TT+XFree863.3.6 runs happily. The onboard fxp0 detected and runs very well. (sustained at 8.7 megabytes/sec on 100mbit full-dup switched ether) Mouse works well. The sony memory stick drive detected as umass0 and is seen by the system as da0. USB works well. Here are a few troubling spots: APM detected and apmd runs. When I try to suspend (either with Fn+Esc, Fn+F12, zzz, apm -z, apm =Z) it suspends to memory and comes back fine. Problem is, upon coming back up, kernel keeps flushing out "uhub0: halted" "pcm0: halted" "fxp0 timed out" Sound will not play, cannot ping out, usb devices don't respond. How should I get apm and suspend-to-disk working? I cannot find out if the DVDROM is cardbus or not. Upon boot, if the DVDROM is plugged into the PCMCIA slot kernel will panic. Has anyone gotten it to even detect correctly? Finally, is the jogdial usable? I appreciate any feedback and suggestions. Thanks. Attached are relevant files. --Michael -- +------------------------------------------------------------------+ | keichii@peorth.iteration.net | keichii@bsdconspiracy.net | | http://peorth.iteration.net/~keichii | Yes, BSD is a conspiracy. | +------------------------------------------------------------------+ --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="dmesg.txt" Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-20000815-CURRENT #0: Wed Aug 23 01:04:19 CDT 2000 keichii@iterative.iteration.net:/usr/src/sys/compile/ITERATIVE Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 496311082 Hz CPU: Pentium III/Pentium III Xeon/Celeron (496.31-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 134152192 (131008K bytes) avail memory = 124919808 (121992K bytes) Preloaded elf kernel "kernel" at 0xc0461000. Preloaded elf module "vesa.ko" at 0xc046109c. seq0-63: Midi sequencers. Pentium Pro MTRR support enabled VESA: v2.0, 6080k memory, flags:0x0, mode table:0xc045e2c2 (1000022) VESA: MagicMedia 256XL+ 48K md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 0.0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 9 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfc90-0xfc9f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 uhci0: port 0xfca0-0xfcbf irq 9 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: at 7.3 pci0: (vendor=0x104d, dev=0x8039) at 8.0 irq 9 pcm0: port 0xfc8c-0xfc8f,0xfcc0-0xfcff mem 0xfedf8000-0xfedfffff irq 9 at device 9.0 on pci0 pci0: (vendor=0x14f1, dev=0x2443) at 10.0 irq 9 fxp0: port 0xfc40-0xfc7f mem 0xfec00000-0xfecfffff,0xfedf6000-0xfedf6fff irq 9 at device 11.0 on pci0 fxp0: Ethernet address 08:00:46:07:de:51 pcic-pci0: at device 12.0 on pci0 pci0: (vendor=0x104d, dev=0x808a) at 13.0 irq 0 fdc0: direction bit not set fdc0: cmd 3 failed at out byte 1 of 3 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model GlidePoint, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> pcic0: at port 0x3e0 iomem 0xd0000 on isa0 pcic0: Polling mode pccard0: on pcic0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 ppi0: on ppbus0 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources DUMMYNET initialized (000608) IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to deny, logging limited to 250 packets/entry by default IPsec: Initialized Security Association Processing. IPv6 packet filtering initialized, logging limited to 250 packets/entry ad0: 11513MB [23392/16/63] at ata0-master using UDMA33 Mounting root from ufs:/dev/ad0s2a pid 68868 (conftest), uid 0: exited on signal 6 (core dumped) pcm0: hwptr went backwards 824 -> 440 pcm0: hwptr went backwards 136 -> 3632 pcm0: hwptr went backwards 592 -> 4060 pcm0: hwptr went backwards 880 -> 636 pcm0: hwptr went backwards 2172 -> 1276 pcm0: hwptr went backwards 652 -> 4028 pcm0: hwptr went backwards 824 -> 4056 pcm0: hwptr went backwards 652 -> 452 pcm0: hwptr went backwards 1688 -> 1228 pcm0: hwptr went backwards 880 -> 764 pcm0: hwptr went backwards 824 -> 452 pcm0: hwptr went backwards 824 -> 632 pcm0: hwptr went backwards 2396 -> 2372 pcm0: hwptr went backwards 40 -> 3200 pcm0: hwptr went backwards 3016 -> 2096 pcm0: hwptr went backwards 3632 -> 3316 pcm0: hwptr went backwards 2080 -> 1940 pcm0: hwptr went backwards 3448 -> 3364 pcm0: hwptr went backwards 880 -> 208 pcm0: hwptr went backwards 528 -> 328 pcm0: hwptr went backwards 716 -> 3908 pcm0: hwptr went backwards 592 -> 3696 pcm0: hwptr went backwards 1832 -> 1360 pcm0: hwptr went backwards 880 -> 188 pcm0: hwptr went backwards 652 -> 408 pcm0: hwptr went backwards 860 -> 432 pcm0: hwptr went backwards 1780 -> 800 pcm0: hwptr went backwards 652 -> 484 pcm0: hwptr went backwards 980 -> 176 pcm0: hwptr went backwards 824 -> 28 pcm0: hwptr went backwards 912 -> 408 pcm0: hwptr went backwards 236 -> 3440 pcm0: hwptr went backwards 72 -> 3376 pcm0: hwptr went backwards 816 -> 532 pcm0: hwptr went backwards 424 -> 3876 pcm0: hwptr went backwards 880 -> 236 pcm0: hwptr went backwards 880 -> 492 pcm0: hwptr went backwards 708 -> 424 pcm0: hwptr went backwards 820 -> 3920 pcm0: hwptr went backwards 880 -> 3980 pcm0: hwptr went backwards 592 -> 3740 pcm0: hwptr went backwards 652 -> 3896 pcm0: hwptr went backwards 708 -> 656 pcm0: hwptr went backwards 2480 -> 2032 pcm0: hwptr went backwards 824 -> 644 pcm0: hwptr went backwards 2376 -> 1656 pcm0: hwptr went backwards 1172 -> 640 pcm0: hwptr went backwards 2464 -> 2280 pcm0: hwptr went backwards 1068 -> 276 pcm0: hwptr went backwards 1872 -> 1700 pcm0: hwptr went backwards 824 -> 652 pcm0: hwptr went backwards 592 -> 3780 pcm0: hwptr went backwards 1556 -> 1476 pcm0: hwptr went backwards 452 -> 228 pcm0: hwptr went backwards 692 -> 16 pcm0: hwptr went backwards 592 -> 476 pcm0: hwptr went backwards 708 -> 3984 pcm0: hwptr went backwards 1712 -> 1424 pid 51651 (battery_applet), uid 1001: exited on signal 6 (core dumped) pcm0: hwptr went backwards 2436 -> 2364 pcm0: hwptr went backwards 2468 -> 2340 pcm0: hwptr went backwards 652 -> 528 pcm0: hwptr went backwards 2112 -> 1088 pcm0: hwptr went backwards 592 -> 236 pcm0: hwptr went backwards 824 -> 432 pcm0: hwptr went backwards 2200 -> 1752 pcm0: hwptr went backwards 772 -> 4016 pid 52478 (soffice.bin), uid 1001: exited on signal 6 (core dumped) pid 52490 (soffice.bin), uid 1001: exited on signal 6 (core dumped) pcm0: hwptr went backwards 880 -> 4056 pcm0: hwptr went backwards 1784 -> 1700 pcm0: hwptr went backwards 1188 -> 552 pcm0: hwptr went backwards 652 -> 3812 pcm0: play interrupt timeout, channel dead pcm0: play interrupt timeout, channel dead fxp0: device timeout usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted pcm0: play interrupt timeout, channel dead usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted pcm0: play interrupt timeout, channel dead usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted Waiting (max 60 seconds) for system process `bufdaemon' to stop...usb0: host controller halted usb0: host controller halted stopped Waiting (max 60 seconds) for system process `syncer' to stop...stopped syncing disks... 3 done Uptime: 10h16m21s Rebooting... Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-20000815-CURRENT #0: Wed Aug 23 01:04:19 CDT 2000 keichii@iterative.iteration.net:/usr/src/sys/compile/ITERATIVE Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 496310672 Hz CPU: Pentium III/Pentium III Xeon/Celeron (496.31-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 134152192 (131008K bytes) avail memory = 124919808 (121992K bytes) Preloaded elf kernel "kernel" at 0xc0461000. Preloaded elf module "vesa.ko" at 0xc046109c. seq0-63: Midi sequencers. Pentium Pro MTRR support enabled VESA: v2.0, 6080k memory, flags:0x0, mode table:0xc045e2c2 (1000022) VESA: MagicMedia 256XL+ 48K md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 0.0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 9 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfc90-0xfc9f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 uhci0: port 0xfca0-0xfcbf irq 9 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: at 7.3 pci0: (vendor=0x104d, dev=0x8039) at 8.0 irq 9 pcm0: port 0xfc8c-0xfc8f,0xfcc0-0xfcff mem 0xfedf8000-0xfedfffff irq 9 at device 9.0 on pci0 pci0: (vendor=0x14f1, dev=0x2443) at 10.0 irq 9 fxp0: port 0xfc40-0xfc7f mem 0xfec00000-0xfecfffff,0xfedf6000-0xfedf6fff irq 9 at device 11.0 on pci0 fxp0: Ethernet address 08:00:46:07:de:51 pcic-pci0: at device 12.0 on pci0 pci0: (vendor=0x104d, dev=0x808a) at 13.0 irq 0 fdc0: direction bit not set fdc0: cmd 3 failed at out byte 1 of 3 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model GlidePoint, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> pcic0: at port 0x3e0 iomem 0xd0000 on isa0 pcic0: Polling mode pccard0: on pcic0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 ppi0: on ppbus0 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources DUMMYNET initialized (000608) IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to deny, logging limited to 250 packets/entry by default IPsec: Initialized Security Association Processing. IPv6 packet filtering initialized, logging limited to 250 packets/entry ad0: 11513MB [23392/16/63] at ata0-master using UDMA33 Mounting root from ufs:/dev/ad0s2a pcm0: hwptr went backwards 696 -> 4040 pcm0: hwptr went backwards 368 -> 3684 pcm0: hwptr went backwards 592 -> 220 pcm0: hwptr went backwards 188 -> 3288 pcm0: play interrupt timeout, channel dead pcm0: play interrupt timeout, channel dead pcm0: play interrupt timeout, channel dead pcm0: play interrupt timeout, channel dead pid 351 (crxvt), uid 1001: exited on signal 11 (core dumped) fxp0: device timeout usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted usb0: host controller halted Waiting (max 60 seconds) for system process `bufdaemon' to stop...usb0: host controller halted usb0: host controller halted stopped Waiting (max 60 seconds) for system process `syncer' to stop...stopped syncing disks... 5 3 1 1 1 1 1 1 1 1 1 1 1 1 1 usb0: host controller halted 1 usb0: host controller halted 1 usb0: host controller halted usb0: host controller halted 1 usb0: host controller halted 1 usb0: host controller halted 1 giving up on 1 buffers Uptime: 39m45s The operating system has halted. Please press any key to reboot. Rebooting... Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-20000815-CURRENT #0: Thu Aug 24 16:48:16 CDT 2000 keichii@iterative.iteration.net:/usr/src/sys/compile/ITERATIVE.test Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (496.31-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 134152192 (131008K bytes) avail memory = 124919808 (121992K bytes) Preloaded elf kernel "kernel" at 0xc0461000. Preloaded elf module "vesa.ko" at 0xc046109c. seq0-63: Midi sequencers. Pentium Pro MTRR support enabled VESA: v2.0, 6080k memory, flags:0x0, mode table:0xc045e2c2 (1000022) VESA: MagicMedia 256XL+ 48K md0: Malloc disk apm0: on motherboard apm0: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 0.0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 9 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfc90-0xfc9f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 uhci0: port 0xfca0-0xfcbf irq 9 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: at 7.3 pci0: (vendor=0x104d, dev=0x8039) at 8.0 irq 9 pcm0: port 0xfc8c-0xfc8f,0xfcc0-0xfcff mem 0xfedf8000-0xfedfffff irq 9 at device 9.0 on pci0 pci0: (vendor=0x14f1, dev=0x2443) at 10.0 irq 9 fxp0: port 0xfc40-0xfc7f mem 0xfec00000-0xfecfffff,0xfedf6000-0xfedf6fff irq 9 at device 11.0 on pci0 fxp0: Ethernet address 08:00:46:07:de:51 pcic-pci0: at device 12.0 on pci0 pci0: (vendor=0x104d, dev=0x808a) at 13.0 irq 0 fdc0: direction bit not set fdc0: cmd 3 failed at out byte 1 of 3 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model GlidePoint, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> pcic0: at port 0x3e0 iomem 0xd0000 on isa0 pcic0: Polling mode pccard0: on pcic0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 ppi0: on ppbus0 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources DUMMYNET initialized (000608) IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to deny, logging limited to 250 packets/entry by default IPsec: Initialized Security Association Processing. IPv6 packet filtering initialized, logging limited to 250 packets/entry ad0: 11513MB [23392/16/63] at ata0-master using UDMA33 Mounting root from ufs:/dev/ad0s2a WARNING: / was not properly dismounted Entire system suspend failure: errcode = 96 resumed from suspended mode (slept 00:00:13) ata0: resetting devices .. done pcm0: play interrupt timeout, channel dead resumed from suspended mode (slept 00:00:10) ata0: resetting devices .. done resumed from suspended mode (slept 00:00:13) ata0: resetting devices .. done pcm0: play interrupt timeout, channel dead Waiting (max 60 seconds) for system process `bufdaemon' to stop...stopped Waiting (max 60 seconds) for system process `syncer' to stop...stopped syncing disks... done Uptime: 24m21s Rebooting... Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-20000815-CURRENT #0: Thu Aug 24 16:48:16 CDT 2000 keichii@iterative.iteration.net:/usr/src/sys/compile/ITERATIVE.test Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (496.31-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x383f9ff real memory = 134152192 (131008K bytes) avail memory = 124919808 (121992K bytes) Preloaded elf kernel "kernel" at 0xc0461000. Preloaded elf module "vesa.ko" at 0xc046109c. seq0-63: Midi sequencers. Pentium Pro MTRR support enabled VESA: v2.0, 6080k memory, flags:0x0, mode table:0xc045e2c2 (1000022) VESA: MagicMedia 256XL+ 48K md0: Malloc disk apm0: on motherboard apm0: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 0.0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 9 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfc90-0xfc9f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 uhci0: port 0xfca0-0xfcbf irq 9 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: at 7.3 pci0: (vendor=0x104d, dev=0x8039) at 8.0 irq 9 pcm0: port 0xfc8c-0xfc8f,0xfcc0-0xfcff mem 0xfedf8000-0xfedfffff irq 9 at device 9.0 on pci0 pci0: (vendor=0x14f1, dev=0x2443) at 10.0 irq 9 fxp0: port 0xfc40-0xfc7f mem 0xfec00000-0xfecfffff,0xfedf6000-0xfedf6fff irq 9 at device 11.0 on pci0 fxp0: Ethernet address 08:00:46:07:de:51 pcic-pci0: at device 12.0 on pci0 pci0: (vendor=0x104d, dev=0x808a) at 13.0 irq 0 fdc0: direction bit not set fdc0: cmd 3 failed at out byte 1 of 3 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model GlidePoint, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> pcic0: at port 0x3e0 iomem 0xd0000 on isa0 pcic0: Polling mode pccard0: on pcic0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 ppi0: on ppbus0 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources DUMMYNET initialized (000608) IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to deny, logging limited to 250 packets/entry by default IPsec: Initialized Security Association Processing. IPv6 packet filtering initialized, logging limited to 250 packets/entry ad0: 11513MB [23392/16/63] at ata0-master using UDMA33 Mounting root from ufs:/dev/ad0s2a pcm0: hwptr went backwards 132 -> 3504 pcm0: hwptr went backwards 2980 -> 2196 pcm0: hwptr went backwards 1632 -> 1240 pcm0: hwptr went backwards 2204 -> 2192 pcm0: hwptr went backwards 860 -> 420 --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="dumpcis_dvdrom.txt" The kernel won't boot if I have the DVDROM in the PCMCIA slot. If I insert the card after the system boots, the following is output ===== Configuration data for card in slot 0 Tuple #1, code = 0xff (Terminator), length = 0 1 slots found --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="relevant_var_log_messages.txt" Aug 24 13:23:29 iterative /kernel: pcm0: play interrupt timeout, channel dead Aug 24 13:23:46 iterative /kernel: pcm0: play interrupt timeout, channel dead Aug 24 13:23:49 iterative /kernel: fxp0: device timeout Aug 24 13:23:49 iterative /kernel: usb0: host controller halted Aug 24 13:23:53 iterative last message repeated 4 times Aug 24 13:23:54 iterative /kernel: pcm0: play interrupt timeout, channel dead Aug 24 13:24:00 iterative /kernel: usb0: host controller halted Aug 24 13:24:47 iterative last message repeated 22 times Aug 24 13:24:51 iterative /kernel: pcm0: play interrupt timeout, channel dead Aug 24 13:24:52 iterative /kernel: usb0: host controller halted Aug 24 13:25:18 iterative last message repeated 15 times Aug 24 13:27:22 iterative last message repeated 24 times Aug 24 13:27:27 iterative /kernel: usb0: host controller halted Aug 24 13:27:27 iterative /kernel: usb0: host controller halted Aug 24 13:27:33 iterative last message repeated 2 times Aug 24 13:27:39 iterative shutdown: reboot by keichii: Aug 24 13:27:42 iterative syslogd: exiting on signal 15 Aug 24 16:09:22 iterative /kernel: usb0: host controller halted Aug 24 16:09:22 iterative last message repeated 39 times Aug 24 16:09:22 iterative /kernel: Waiting (max 60 seconds) for system process `bufdaemon' to stop...usb0: host controller halted Aug 24 16:09:22 iterative /kernel: usb0: host controller halted Aug 24 16:09:22 iterative /kernel: stopped Aug 24 16:09:22 iterative /kernel: Waiting (max 60 seconds) for system process `syncer' to stop...stopped Aug 24 16:09:22 iterative /kernel: Aug 24 16:09:22 iterative /kernel: syncing disks... 3 Aug 24 16:09:22 iterative /kernel: done Aug 24 16:09:22 iterative /kernel: Uptime: 10h16m21s Aug 24 16:40:24 iterative /kernel: pcm0: play interrupt timeout, channel dead Aug 24 16:41:35 iterative /kernel: pcm0: play interrupt timeout, channel dead Aug 24 16:45:57 iterative /kernel: fxp0: device timeout Aug 24 16:45:57 iterative /kernel: usb0: host controller halted Aug 24 16:46:31 iterative last message repeated 5 times Aug 24 16:48:23 iterative last message repeated 19 times Aug 24 16:48:27 iterative shutdown: power-down by keichii: Aug 24 16:51:23 iterative /kernel: usb0: host controller halted Aug 24 16:51:23 iterative last message repeated 3 times Aug 24 16:51:23 iterative /kernel: Waiting (max 60 seconds) for system process `bufdaemon' to stop...usb0: host controller halted Aug 24 16:51:23 iterative /kernel: usb0: host controller halted Aug 24 16:51:23 iterative /kernel: stopped Aug 24 16:51:23 iterative /kernel: Waiting (max 60 seconds) for system process `syncer' to stop...stopped Aug 24 16:51:23 iterative /kernel: Aug 24 16:51:23 iterative /kernel: syncing disks... 5 3 1 1 1 1 1 1 1 1 1 1 1 1 1 usb0: host controller halted Aug 24 16:51:23 iterative /kernel: 1 usb0: host controller halted Aug 24 16:51:23 iterative /kernel: 1 usb0: host controller halted Aug 24 16:51:23 iterative /kernel: usb0: host controller halted Aug 24 16:51:23 iterative /kernel: 1 usb0: host controller halted Aug 24 16:51:23 iterative /kernel: 1 usb0: host controller halted Aug 24 16:51:23 iterative /kernel: 1 Aug 24 16:51:23 iterative /kernel: giving up on 1 buffers Aug 24 16:51:23 iterative /kernel: Uptime: 39m45s Aug 24 16:51:23 iterative /kernel: Aug 24 16:51:23 iterative /kernel: The operating system has halted. Aug 24 16:51:23 iterative /kernel: Please press any key to reboot. Aug 24 16:51:23 iterative /kernel: Aug 24 16:51:23 iterative /kernel: Rebooting... Suspending Aug 24 16:53:49 iterative apmd[178]: apmevent 0003 index 1 Aug 24 16:53:50 iterative apmd: resumed at 20000824 16:53:50 Aug 24 16:53:59 iterative /kernel: pcm0: play interrupt timeout, channel dead Aug 24 16:54:23 iterative /kernel: resumed from suspended mode (slept 00:00:10) Aug 24 16:54:24 iterative /kernel: ata0: resetting devices .. done Aug 24 16:54:23 iterative apmd[178]: apmevent 0003 index 2 Aug 24 16:54:23 iterative apmd: resumed at 20000824 16:54:23 Aug 24 16:54:36 iterative apmd[318]: start Aug 24 16:54:47 iterative apmd[323]: start Aug 24 16:55:04 iterative /kernel: resumed from suspended mode (slept 00:00:13) Aug 24 16:55:05 iterative /kernel: ata0: resetting devices .. done Aug 24 16:55:04 iterative apmd[323]: apmevent 0003 index 3 Aug 24 16:55:04 iterative apmd: resumed at 20000824 16:55:04 Aug 24 16:55:13 iterative /kernel: pcm0: play interrupt timeout, channel dead Aug 24 17:14:21 iterative shutdown: reboot by keichii: Aug 24 17:14:24 iterative syslogd: exiting on signal 15 Aug 24 17:15:18 iterative /kernel: Waiting (max 60 seconds) for system process `bufdaemon' to stop...stopped Aug 24 17:15:18 iterative /kernel: Waiting (max 60 seconds) for system process `syncer' to stop...stopped Aug 24 17:15:18 iterative /kernel: Aug 24 17:15:18 iterative /kernel: syncing disks... Aug 24 17:15:18 iterative /kernel: done Aug 24 17:15:18 iterative /kernel: Uptime: 24m21s Aug 24 17:15:18 iterative /kernel: apm0: on motherboard Aug 24 17:15:18 iterative /kernel: apm0: found APM BIOS v1.2, connected at v1.2 DVDROM Aug 24 17:48:33 iterative /kernel: pccard: card inserted, slot 0 Aug 24 17:48:39 iterative pccardd[54]: No card in database for "(null)"("(null)") --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ITERATIVE.hints" # $FreeBSD: src/sys/i386/conf/GENERIC.hints,v 1.3 2000/07/19 16:32:38 imp Exp $ hint.fdc.0.at="isa" hint.fdc.0.port="0x3F0" hint.fdc.0.irq="6" hint.fdc.0.drq="2" hint.fd.0.at="fdc0" hint.fd.0.drive="0" hint.fd.1.at="fdc0" hint.fd.1.drive="1" hint.ata.0.at="isa" hint.ata.0.port="0x1F0" hint.ata.0.irq="14" hint.ata.1.at="isa" hint.ata.1.port="0x170" hint.ata.1.irq="15" hint.adv.0.at="isa" hint.bt.0.at="isa" hint.aha.0.at="isa" hint.aic.0.at="isa" hint.atkbdc.0.at="isa" hint.atkbdc.0.port="0x060" hint.atkbd.0.at="atkbdc" hint.atkbd.0.irq="1" hint.atkbd.0.flags="0x1" hint.psm.0.at="atkbdc" hint.psm.0.irq="12" hint.vga.0.at="isa" hint.sc.0.at="isa" hint.sc.0.flags="0x100" hint.vt.0.at="isa" hint.npx.0.at="nexus" hint.npx.0.port="0x0F0" hint.npx.0.irq="13" hint.apm.0.at="nexus" #hint.apm.0.disabled="1" hint.apm.0.flags="0x20" hint.pcic.0.at="isa" # hint.pcic.0.irq="10" # Default to polling hint.pcic.0.port="0x3e0" hint.pcic.0.maddr="0xd0000" hint.pcic.1.at="isa" hint.pcic.1.irq="11" hint.pcic.1.port="0x3e2" hint.pcic.1.maddr="0xd4000" hint.pcic.1.disabled="1" hint.sio.0.at="isa" hint.sio.0.port="0x3F8" hint.sio.0.flags="0x10" hint.sio.0.irq="4" hint.sio.1.at="isa" hint.sio.1.port="0x2F8" hint.sio.1.irq="3" hint.sio.2.at="isa" hint.sio.2.disabled="1" hint.sio.2.port="0x3E8" hint.sio.2.irq="5" hint.sio.3.at="isa" hint.sio.3.disabled="1" hint.sio.3.port="0x2E8" hint.sio.3.irq="9" hint.ppc.0.at="isa" hint.ppc.0.irq="7" hint.ed.0.at="isa" hint.ed.0.port="0x280" hint.ed.0.irq="10" hint.ed.0.maddr="0xd8000" hint.cs.0.at="isa" hint.cs.0.port="0x300" hint.sn.0.at="isa" hint.sn.0.port="0x300" hint.sn.0.irq="10" hint.ie.0.at="isa" hint.ie.0.port="0x300" hint.ie.0.irq="10" hint.ie.0.maddr="0xd0000" hint.fe.0.at="isa" hint.fe.0.port="0x300" hint.le.0.at="isa" hint.le.0.port="0x300" hint.le.0.irq="5" hint.le.0.maddr="0xd0000" hint.lnc.0.at="isa" hint.lnc.0.port="0x280" hint.lnc.0.irq="10" hint.lnc.0.drq="0" --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ITERATIVE.test" # # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # # 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 NOTES configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in NOTES. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.269 2000/07/29 02:12:44 obrien Exp $ machine i386 #cpu I386_CPU #cpu I486_CPU #cpu I586_CPU cpu I686_CPU ident ITERATIVE maxusers 256 hints "ITERATIVE.hints" #Default places to look for devices. makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options DDB options KTRACE #kernel tracing #options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options INET6 #IPv6 communications protocols options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options MFS #Memory Filesystem options MD_ROOT #MD is a potential root device options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, NFS required options MSDOSFS #MSDOS Filesystem options NTFS #NT File System options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options KBD_INSTALL_CDEV # install a CDEV entry in /dev options RANDOMDEV #entropy device options CPU_FASTER_5X86_FPU options NO_F00F_HACK # 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=8 # number of busses #options NAPIC=1 # number of IO APICs #options NINTR=24 # number of INTs device isa device eisa device pci options COMPAT_OLDISA # compatability shims for lnc, fe, le options COMPAT_OLDPCI # compatability shims for lnc, vx # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID #Static device numbering options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # SCSI Controllers #device ahb # EISA AHA1742 family #device ahc # AHA2940 and onboard AIC7xxx devices #device amd # AMD 53C974 (Teckram DC-390(T)) #device dpt # DPT Smartcache - See NOTES for options! #device isp # Qlogic family #device ncr # NCR/Symbios Logic #device sym # NCR/Symbios Logic (newer chipsets + those of `ncr') #device adv #device adw #device bt #device aha 1 #device aic # SCSI peripherals device scbus # SCSI bus (required) device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) # RAID controllers #device ida # Compaq Smart RAID #device amr # AMI MegaRAID #device mlx # Mylex DAC960 family # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc 1 device atkbd device psm device vga # splash screen/screen saver device splash # syscons is the default console driver, resembling an SCO console device sc 1 options SC_NORM_ATTR=(FG_GREEN|BG_BLACK) options SC_NORM_REV_ATTR=(FG_YELLOW|BG_GREEN) options SC_KERNEL_CONS_ATTR=(FG_LIGHTRED|BG_BLACK) options SC_KERNEL_CONS_REV_ATTR=(FG_BLACK|BG_RED) options SC_HISTORY_SIZE=5000 # Enable this for the pcvt (VT220 compatible) console driver #device vt #options XSERVER # support for X server on a vt console #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 # Floating point support - do not disable. device npx # Power management support (see NOTES for more options) device apm options PSM_RESETAFTERSUSPEND options POWERFAIL_NMI # make it beep instead of panicing # PCCARD (PCMCIA) support device card device pcic # Serial (COM) ports device sio # Parallel port device ppc device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. #device de # DEC/Intel DC21x4x (``Tulip'') device fxp # Intel EtherExpress PRO/100B (82557, 82558) #device tx # SMC 9432TX (83c170 ``EPIC'') #device vx # 3Com 3c590, 3c595 (``Vortex'') #device wx # Intel Gigabit Ethernet Card (``Wiseman'') # PCI Ethernet NICs that use the common MII bus controller code. #device miibus # MII bus support #device dc # DEC/Intel 21143 and various workalikes #device rl # RealTek 8129/8139 #device sf # Adaptec AIC-6915 (``Starfire'') #device sis # Silicon Integrated Systems SiS 900/SiS 7016 #device ste # Sundance ST201 (D-Link DFE-550TX) #device tl # Texas Instruments ThunderLAN #device vr # VIA Rhine, Rhine II #device wb # Winbond W89C840F #device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. #device ed #device ex #device ep #device cs #device sn # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attatement needed # and resources will always be dynamically assigned by the pccard code. #device wi # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP # mode (the factory default). If you set the switches on your ISA # card for a manually chosen I/O address and IRQ, you must specify # those paremeters here. #device an # BayStack 660 and others #device awi # Xircom pccard ethernet #device xe # The probe order of these is presently determined by i386/isa/isa_compat.c. #device ie #device fe #device le #device lnc # Pseudo devices - the number indicates how many units to allocated. device loop # Network loopback device ether # Ethernet support device sl # Kernel SLIP device ppp 1 # Kernel PPP device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device md # Memory "disks" device gif 4 # IPv6 and IPv4 tunneling device faith 1 # IPv6-to-IPv4 relaying (translation) device snp 4 # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! device bpf 4 # Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) #device udbp # USB Double Bulk Pipe devices device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse device urio # Diamond Rio 500 MP3 player # USB Ethernet, requires mii #device aue # ADMtek USB ethernet #device cue # CATC USB ethernet #device kue # Kawasaki LSI USB ethernet options IPSEC #IP security options IPSEC_ESP #IP security (crypto; define w/ IPSEC) options IPSEC_DEBUG #debug for IP security options NETATALK #Appletalk communications protocols options IPFIREWALL #firewall options IPFIREWALL_VERBOSE #print information about # dropped packets options IPFIREWALL_FORWARD #enable transparent proxy support options IPFIREWALL_VERBOSE_LIMIT=250 #limit verbosity #options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default options IPV6FIREWALL #firewall for IPv6 options IPV6FIREWALL_VERBOSE options IPV6FIREWALL_VERBOSE_LIMIT=250 #options IPV6FIREWALL_DEFAULT_TO_ACCEPT options IPDIVERT #divert sockets options TCPDEBUG options DUMMYNET options QUOTA #enable disk quotas device pcm device sbc device midi device seq # The bridge drivers for sound cards. These can be seperately configured # for providing services to the likes of new-midi. # When used with 'device pcm' they also provide pcm sound services. # device sbc # : Creative SoundBlaster ISA PnP/non-PnP # Supports ESS and Avance ISA chips as well. # gusc: Gravis UltraSound ISA PnP/non-PnP # csa: Crystal Semiconductor CS461x/428x PCI --h31gzZEtNLTqOjlF-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 16:33:58 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from peorth.iteration.net (peorth.iteration.net [208.190.180.178]) by hub.freebsd.org (Postfix) with ESMTP id F078637B43C; Thu, 24 Aug 2000 16:33:54 -0700 (PDT) Received: by peorth.iteration.net (Postfix, from userid 1000) id 05FFC64C2F; Thu, 24 Aug 2000 18:33:55 -0500 (CDT) Date: Thu, 24 Aug 2000 18:33:54 -0500 From: "Michael C. Wu" To: freebsd-mobile@freebsd.org, cg@freebsd.org Subject: Re: VAIO Z505JS Reports and Questions Message-ID: <20000824183354.A1725@peorth.iteration.net> Mail-Followup-To: "Michael C. Wu" , freebsd-mobile@freebsd.org, cg@freebsd.org References: <20000824175536.D1353@peorth.iteration.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000824175536.D1353@peorth.iteration.net>; from keichii@peorth.iteration.net on Thu, Aug 24, 2000 at 05:55:37PM -0500 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Replying to my own questions....sorry On Thu, Aug 24, 2000 at 05:55:37PM -0500, Michael C. Wu scribbled: | Running the 20000815-Current snapshot from current.freebsd.org | Here are a few troubling spots: | APM detected and apmd runs. When I try to suspend | (either with Fn+Esc, Fn+F12, zzz, apm -z, apm =Z) | it suspends to memory and comes back fine. | Problem is, upon coming back up, kernel keeps | flushing out "uhub0: halted" "pcm0: halted" "fxp0 timed out" | Sound will not play, cannot ping out, usb devices don't respond. After applying kern/20255, pcm now suspends and comes back up very well. For some reason, uhub0 halted error disappeared too. fxp0 will still die after suspension. However, I did ifconfig fxp0 down ifconfig fxp0 bla bla bla and the interface came back up. Perhaps someone should test this with a real PCMCIA NIC. | | How should I get apm and suspend-to-disk working? Still no luck on suspend-to-disk | Finally, is the jogdial usable? -- +------------------------------------------------------------------+ | keichii@peorth.iteration.net | keichii@bsdconspiracy.net | | http://peorth.iteration.net/~keichii | Yes, BSD is a conspiracy. | +------------------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 16:56:20 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po4.wam.umd.edu (po4.wam.umd.edu [128.8.10.166]) by hub.freebsd.org (Postfix) with ESMTP id 7916037B42C for ; Thu, 24 Aug 2000 16:56:18 -0700 (PDT) Received: from rac2.wam.umd.edu (rac2.wam.umd.edu [128.8.10.142]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id TAA02224 for ; Thu, 24 Aug 2000 19:56:17 -0400 (EDT) Received: from rac2.wam.umd.edu (localhost [127.0.0.1]) by rac2.wam.umd.edu (8.9.3/8.9.3) with SMTP id TAA24135 for ; Thu, 24 Aug 2000 19:56:17 -0400 (EDT) Received: from localhost (culverk@localhost) by rac2.wam.umd.edu (8.9.3/8.9.3) with ESMTP id TAA24131 for ; Thu, 24 Aug 2000 19:56:17 -0400 (EDT) X-Authentication-Warning: rac2.wam.umd.edu: culverk owned process doing -bs Date: Thu, 24 Aug 2000 19:56:17 -0400 (EDT) From: Kenneth Wayne Culver To: freebsd-mobile@freebsd.org Subject: Re: fe575 (again) 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 > does anything new need to go in pccard.conf to allow the fe575 to > work? It should be detected with the xl driver should it not? Ok so far this is what I've done for installing the card. I made floppies (using the make floppies target in /usr/src/release) and got floppies to build. I included the following in the pccard.conf file: card "3Com" "3Com 3c575-TX Cardbus Fast Ethernet XL" config 0x1 "xl" ? 0x1 insert /etc/pccard_ether $device remove /sbin/ifconfig $device delete I don't know if I need this, but I put it there anyway, and it went into the mfsroot.flp image, I checked it after it was built. When the machine boots the kern.flp disk, I do the visual userconfig as usual, and then when it's done, the first thing sysinstall says is the pccard stuff.. If I select yes to use pccards, it asks for a mem address... I choose the default (because it's the correct one) and the default for the next selection, and the card doesn't get configured. However, if I select yes to configure pccards, but then cancel the memory selection and irq selection, it beeps as if the card was configured, but then the screen just stays a blank blue, and if I alt-f2, the machine says signal 11 caught: this is bad... or something like that. I managed to catch the dmesg, and it says the "cardbus kludge" is in this kernel, so I'm stuck... did I put the wrong thing in pccard.conf? Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 17:23: 9 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from auemlsrv.firewall.lucent.com (auemail1.lucent.com [192.11.223.161]) by hub.freebsd.org (Postfix) with ESMTP id ADE7237B422 for ; Thu, 24 Aug 2000 17:23:06 -0700 (PDT) Received: from auemlsrv.firewall.lucent.com (localhost [127.0.0.1]) by auemlsrv.firewall.lucent.com (Pro-8.9.3/8.9.3) with ESMTP id UAA02090 for ; Thu, 24 Aug 2000 20:23:06 -0400 (EDT) Received: from mhmail.mh.lucent.com (h135-3-115-8.lucent.com [135.3.115.8]) by auemlsrv.firewall.lucent.com (Pro-8.9.3/8.9.3) with ESMTP id UAA02082; Thu, 24 Aug 2000 20:23:05 -0400 (EDT) Received: from lucent.com (positron.micro.lucent.com [192.19.56.129]) by mhmail.mh.lucent.com (8.8.8+Sun/EMS-1.5 sol2) id UAA25240; Thu, 24 Aug 2000 20:23:03 -0400 (EDT) Message-ID: <39A5BC4D.5F6A20A9@lucent.com> Date: Thu, 24 Aug 2000 20:22:37 -0400 From: "Gary T. Corcoran" Organization: Lucent Microelectronics - Client Access Broadband Systems X-Mailer: Mozilla 4.73 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: Warner Losh Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: How to change link speed/duplex on a 3Com 3CCFE574BT ? References: <39A461BA.B8E3E3AC@lucent.com> <200008240010.SAA53518@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 Warner Losh wrote: > > In message <39A461BA.B8E3E3AC@lucent.com> "Gary T. Corcoran" writes: > : I managed to get my 3Com 3CCFE574BT 10/100 ethernet PC-Card going on > : FreeBSD 4.1 when connected to a 100Mb hub, but I still have one problem. > : I sometimes need to connect to a 10Mb network, and then the card doesn't > : work. No green light, no connectivity. How does one change the link > : speed and/or duplex settings for this card? I tried using the 'media' > : argument to ifconfig, but every keyword after 'media' seems to be rejected, > : as if 'media' is not supported for this card. I then tried using the older > : 'link' flags, 0, 1 and 2, and all eight combinations didn't seem to make > : any difference. So what's the magic incantation? ;-) > > ifconfig ep0 media 10baseT/UTP > > should do the trick. At least it does for the rl driver here at > work. Thanks for the reply Warner. Unfortunately, that was one of the things I had tried (but I tried it again :). Giving the above ifconfig command just results in: ifconfig: SIOCGIFMEDIA: Invalid argument I also noted that when just doing an 'ifconfig ep0' to see the status, it does NOT list supported media types the way other cards, which support the media argument, do. Thus I'm guessing that the driver for the '574 just doesn't support 'media'. So am I just out of luck with this card (on 10Mb networks)? Anyone else have any experience with this 3com card? Gary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 17:52:41 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from moek.pir.net (moek.pir.net [209.192.237.190]) by hub.freebsd.org (Postfix) with ESMTP id 2E28737B42C for ; Thu, 24 Aug 2000 17:52:39 -0700 (PDT) Received: from pir by moek.pir.net with local (Exim) id 13S7jU-0003ut-00 for freebsd-mobile@freebsd.org; Thu, 24 Aug 2000 20:52:32 -0400 Date: Thu, 24 Aug 2000 20:52:31 -0400 From: Peter Radcliffe To: freebsd-mobile@freebsd.org Subject: Re: VAIO Z505JS Reports and Questions Message-ID: <20000824205231.I1236@pir.net> Mail-Followup-To: freebsd-mobile@freebsd.org References: <20000824175536.D1353@peorth.iteration.net> <20000824183354.A1725@peorth.iteration.net> <20000824175536.D1353@peorth.iteration.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000824175536.D1353@peorth.iteration.net>; from keichii@peorth.iteration.net on Thu, Aug 24, 2000 at 05:55:37PM -0500 X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Michael C. Wu" probably said: > Mouse works well. The sony memory stick drive detected > as umass0 and is seen by the system as da0. Curious, memory stick on my HS doesn't appear under 4.1-STABLE. > flushing out "uhub0: halted" "pcm0: halted" "fxp0 timed out" > Sound will not play, cannot ping out, usb devices don't respond. http://www.freebsd.org/cgi/query-pr.cgi?pr=20255 > How should I get apm and suspend-to-disk working? c:\sonysys\Vsrcdfd\IMG\SPT\phdisk.exe create enough space in the partition map under 8Gb. put it on a floppy, boot from it, run it with (from memory) /create /partition and then with /delete /file. > I cannot find out if the DVDROM is cardbus or not. > Upon boot, if the DVDROM is plugged into the PCMCIA slot > kernel will panic. > Has anyone gotten it to even detect correctly? Weird. Not played with a dvdrom drive with a Z. The internal dvdrom drive in an F series vaio works ok as a cdrom drive, no pcmcia though. > After applying kern/20255, pcm now suspends and comes back up very well. > For some reason, uhub0 halted error disappeared too. The fix for USB was merged very recently. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=18261 > fxp0 will still die after suspension. However, I did http://www.FreeBSD.org/cgi/query-pr.cgi?pr=18756 > and the interface came back up. Perhaps someone should test this > with a real PCMCIA NIC. Works fine on my HS with pcmcia. > | Finally, is the jogdial usable? Not to my knowledge. I'd love to use it as a volume control :) Say thank you to Mike Ryan for the patches :) P. -- pir pir@pir.net pir@net.tufts.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 22: 3:40 2000 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 D032837B423 for ; Thu, 24 Aug 2000 22:03:37 -0700 (PDT) Received: from billy-club.village.org (billy-club.village.org [10.0.0.3]) by rover.village.org (8.9.3/8.9.3) with ESMTP id XAA73569; Thu, 24 Aug 2000 23:03:36 -0600 (MDT) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (localhost.village.org [127.0.0.1]) by billy-club.village.org (8.9.3/8.8.3) with ESMTP id XAA32293; Thu, 24 Aug 2000 23:03:45 -0600 (MDT) Message-Id: <200008250503.XAA32293@billy-club.village.org> To: Kenneth Wayne Culver Subject: Re: fe575 (again) Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 24 Aug 2000 18:47:10 EDT." References: Date: Thu, 24 Aug 2000 23:03:45 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Kenneth Wayne Culver writes: : does anything new need to go in pccard.conf to allow the fe575 to work? It : should be detected with the xl driver should it not? Cardbus needs to happen first. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 22: 4:25 2000 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 6703037B424 for ; Thu, 24 Aug 2000 22:04:23 -0700 (PDT) Received: from billy-club.village.org (billy-club.village.org [10.0.0.3]) by rover.village.org (8.9.3/8.9.3) with ESMTP id XAA73578; Thu, 24 Aug 2000 23:04:22 -0600 (MDT) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (localhost.village.org [127.0.0.1]) by billy-club.village.org (8.9.3/8.8.3) with ESMTP id XAA32306; Thu, 24 Aug 2000 23:04:32 -0600 (MDT) Message-Id: <200008250504.XAA32306@billy-club.village.org> To: Kenneth Wayne Culver Subject: Re: fe575 (again) Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 24 Aug 2000 19:56:17 EDT." References: Date: Thu, 24 Aug 2000 23:04:31 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Kenneth Wayne Culver writes: : card "3Com" "3Com 3c575-TX Cardbus Fast Ethernet XL" This is a cardbus card, so you will have to wait for cardbus. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 22:31:38 2000 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 4970037B424 for ; Thu, 24 Aug 2000 22:31:36 -0700 (PDT) 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 XAA73643; Thu, 24 Aug 2000 23:31:35 -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 XAA14530; Thu, 24 Aug 2000 23:31:31 -0600 (MDT) Message-Id: <200008250531.XAA14530@harmony.village.org> Subject: Re: fe575 (again) Cc: Kenneth Wayne Culver , freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 24 Aug 2000 23:04:31 MDT." <200008250504.XAA32306@billy-club.village.org> References: <200008250504.XAA32306@billy-club.village.org> Date: Thu, 24 Aug 2000 23:31:31 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <200008250504.XAA32306@billy-club.village.org> Warner Losh writes: : In message Kenneth Wayne Culver writes: : : card "3Com" "3Com 3c575-TX Cardbus Fast Ethernet XL" : : This is a cardbus card, so you will have to wait for cardbus. I've been reminded that you are using Jonathan Chen's carbus patches. You'll need to tweak them so that your card bus bridge is recogized and you may need to tweak the pci ID that the xl driver attaches to for your 575 if you have a newer card than Jonathan did for his patches. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 22:59:47 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from spock.org (cm-24-92-52-10.nycap.rr.com [24.92.52.10]) by hub.freebsd.org (Postfix) with ESMTP id 0B99737B423 for ; Thu, 24 Aug 2000 22:59:45 -0700 (PDT) Received: (from jon@localhost) by spock.org serial EF600Q3T-B7F; Fri, 25 Aug 2000 01:59:38 -0400 (EDT) (envelope-from jon) Date: Fri, 25 Aug 2000 01:59:38 -0400 From: Jonathan Chen To: Kenneth Wayne Culver Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: fe575 (again) Message-ID: <20000825015938.A38451@spock.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from culverk@wam.umd.edu on Thu, Aug 24, 2000 at 06:47:10PM -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Aug 24, 2000 at 06:47:10PM -0400, Kenneth Wayne Culver wrote: > does anything new need to go in pccard.conf to allow the fe575 to work? It > should be detected with the xl driver should it not? Sorry about not replying sooner - I've been travelling for the last week. Anyway, to use the stopgap driver, you need to do the following: - Apply the patch. (The patch was diff'ed against a 4.1-stable as of 8/1.) And make sure you have cardbus.diff.current and not newcardbus.diff, as they are not the same thing. - Modify your kernel config and remove all pcmcia/cardbus related drivers - Add new driver "device pccbbhack0" and make sure you have "device xl0". - If your have a similar cardbus bridge with a different device id, you can add that to the list in src/sys/pci/pccbbhack.c (the device id should show up in dmesg) - If you have a similar 575 card with a different device id, add that to the list of devices at the top of src/sys/pci/if_xl.c, -AND- add that to the if statement at the beginning of the xl_attach() function. If everything works, you should see pccbbhack{0,1} as well as xl0 attaching on bootup. As far as pccardd or pccard.conf is concerned, you should ignore that as it is not being used at all. -- (o_ 1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2 _o) \\\_\ Jonathan Chen jon@spock.org /_/// <____) No electrons were harmed during production of this message (____> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 24 23:59:31 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id 605AF37B422 for ; Thu, 24 Aug 2000 23:59:29 -0700 (PDT) Received: from rac3.wam.umd.edu (rac3.wam.umd.edu [128.8.10.143]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id CAA23841; Fri, 25 Aug 2000 02:59:25 -0400 (EDT) Received: from rac3.wam.umd.edu (localhost [127.0.0.1]) by rac3.wam.umd.edu (8.9.3/8.9.3) with SMTP id CAA07260; Fri, 25 Aug 2000 02:59:24 -0400 (EDT) Received: from localhost (culverk@localhost) by rac3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id CAA07256; Fri, 25 Aug 2000 02:59:24 -0400 (EDT) X-Authentication-Warning: rac3.wam.umd.edu: culverk owned process doing -bs Date: Fri, 25 Aug 2000 02:59:24 -0400 (EDT) From: Kenneth Wayne Culver To: Warner Losh Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: fe575 (again) In-Reply-To: <200008250504.XAA32306@billy-club.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 umm, I used the driver that had the cardbus hack in it. You know, the one linked to in your advogoto.org page? ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= On Thu, 24 Aug 2000, Warner Losh wrote: > In message Kenneth Wayne Culver writes: > : card "3Com" "3Com 3c575-TX Cardbus Fast Ethernet XL" > > This is a cardbus card, so you will have to wait for cardbus. > > Warner > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 0: 1: 9 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id D79D037B423 for ; Fri, 25 Aug 2000 00:01:06 -0700 (PDT) Received: from rac3.wam.umd.edu (rac3.wam.umd.edu [128.8.10.143]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id DAA23892; Fri, 25 Aug 2000 03:01:04 -0400 (EDT) Received: from rac3.wam.umd.edu (localhost [127.0.0.1]) by rac3.wam.umd.edu (8.9.3/8.9.3) with SMTP id DAA07444; Fri, 25 Aug 2000 03:01:03 -0400 (EDT) Received: from localhost (culverk@localhost) by rac3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id DAA07440; Fri, 25 Aug 2000 03:01:03 -0400 (EDT) X-Authentication-Warning: rac3.wam.umd.edu: culverk owned process doing -bs Date: Fri, 25 Aug 2000 03:01:03 -0400 (EDT) From: Kenneth Wayne Culver To: Warner Losh Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: fe575 (again) In-Reply-To: <200008250531.XAA14530@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 Damn, hrmm, I have no way of getting the id that I know of... for this card... or for the cardbus chip... when it comes up, it's saying that it detects the chips with the "kludged driver" (the ti1225 chips or something), but I have no way of getting a pci id for the pccard, unless you know of some way to get this in windows. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= On Thu, 24 Aug 2000, Warner Losh wrote: > In message <200008250504.XAA32306@billy-club.village.org> Warner Losh writes: > : In message Kenneth Wayne Culver writes: > : : card "3Com" "3Com 3c575-TX Cardbus Fast Ethernet XL" > : > : This is a cardbus card, so you will have to wait for cardbus. > > I've been reminded that you are using Jonathan Chen's carbus patches. > You'll need to tweak them so that your card bus bridge is recogized > and you may need to tweak the pci ID that the xl driver attaches to > for your 575 if you have a newer card than Jonathan did for his > patches. > > Warner > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 0:49:44 2000 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 3245537B423 for ; Fri, 25 Aug 2000 00:49:42 -0700 (PDT) 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 BAA73976; Fri, 25 Aug 2000 01:49:40 -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 BAA15131; Fri, 25 Aug 2000 01:49:36 -0600 (MDT) Message-Id: <200008250749.BAA15131@harmony.village.org> To: Kenneth Wayne Culver Subject: Re: fe575 (again) Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Fri, 25 Aug 2000 03:01:03 EDT." References: Date: Fri, 25 Aug 2000 01:49:36 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Kenneth Wayne Culver writes: : Damn, hrmm, I have no way of getting the id that I know of... for this : card... or for the cardbus chip... when it comes up, it's saying that it : detects the chips with the "kludged driver" (the ti1225 chips or : something), but I have no way of getting a pci id for the pccard, unless : you know of some way to get this in windows. Boot -v might help. It will tell you the IDs of things that aren't attached. pciconf -l might also do the trick. I'm not running the patches myself, or I'd try that. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 5:17:40 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from proton.hexanet.fr (proton.hexanet.fr [194.98.140.18]) by hub.freebsd.org (Postfix) with ESMTP id 093AE37B423; Fri, 25 Aug 2000 05:17:34 -0700 (PDT) Received: from proton.hexanet.fr (localhost [127.0.0.1]) by proton.hexanet.fr (8.9.3/8.9.3) with ESMTP id OAA03146; Fri, 25 Aug 2000 14:17:34 +0200 (CEST) (envelope-from nighty@proton.hexanet.fr) Message-Id: <200008251217.OAA03146@proton.hexanet.fr> X-Mailer: exmh version 2.1.1 10/15/1999 Reply-To: chris@hexanet.fr From: "Christophe Prevotaux" To: freebsd-mobile@freebsd.org, freebsd-multimedia@freebsd.org Subject: [HELP] ES1371 and DFE 660TX on Gateway Solo 2150 Laptop Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Date: Fri, 25 Aug 2000 14:17:34 +0200 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi = I have 2 questions = I own a Gateway 2000 Solo 2150 Laptop = = = In it there are several components that freebsd is unable to recognize = the ES1371 PCI sound board does not get detected at all = = the LTModem ( Winmodem ) ( that I know is not supported yet ) though I hope it will be one day , as Linux has already a driver for it.= = = and finally the PCMCIA Cardbus Ethernet Board I just bought , namely the= = DLINK DFE-660 TX = = = Could anyone help me make these work ? = = = I am running 5-CURRENT ( in hope there would be more support for these )= = = -- = -- =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Christophe Prevotaux Email: chris@hexanet.fr HEXANET SARL URL: http://www.hexanet.fr/ Z.A Farman Sud Tel: +33 (0)3 26 79 30 05 = 9 rue Roland Coffignot Direct: +33 (0)3 26 79 08 02 = BP415 Fax: +33 (0)3 26 79 30 06 51689 Reims Cedex 2 = FRANCE = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 6: 9:59 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from zeus.dnt.md (dnt.md [195.138.124.37]) by hub.freebsd.org (Postfix) with ESMTP id D64A537B43E for ; Fri, 25 Aug 2000 06:09:55 -0700 (PDT) Received: from localhost (sl@localhost) by zeus.dnt.md (8.9.3/8.9.3) with ESMTP id QAA89043 for ; Fri, 25 Aug 2000 16:09:53 +0300 (EEST) (envelope-from sl@dnt.md) Date: Fri, 25 Aug 2000 16:09:53 +0300 (EEST) From: Veaceslav Revutchi To: freebsd-mobile@freebsd.org Subject: phoebemicro 10/100 pc-card troubles Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello I have a 10/100 PCMCIA card from Phoebemicro (NWAM10/100PCMCIA) (http://www.phoebemicro.com/Products/Networking/10_100_Network_Cards/10_100_network_cards.html) and it's not in the pccard.conf. I added mannualy a record for it and tryed verious configs with "ed" and other drivers and various i/o but i keep getting driver allocation failes for my card. I was wondering if anyone on the list is using this this card succesfuly or at least can someone give me some hints of what to try. I'm running 4.1release on a Toshiba Sattelite. Thank you, slava P.S. Please cc: me as well as I'm not subscribed to this list. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 6:36:42 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id 9EFA437B423 for ; Fri, 25 Aug 2000 06:36:37 -0700 (PDT) Received: from rac4.wam.umd.edu (rac4.wam.umd.edu [128.8.10.144]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id JAA03650; Fri, 25 Aug 2000 09:36:34 -0400 (EDT) Received: from rac4.wam.umd.edu (localhost [127.0.0.1]) by rac4.wam.umd.edu (8.9.3/8.9.3) with SMTP id JAA19894; Fri, 25 Aug 2000 09:36:34 -0400 (EDT) Received: from localhost (culverk@localhost) by rac4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id JAA19890; Fri, 25 Aug 2000 09:36:34 -0400 (EDT) X-Authentication-Warning: rac4.wam.umd.edu: culverk owned process doing -bs Date: Fri, 25 Aug 2000 09:36:33 -0400 (EDT) From: Kenneth Wayne Culver To: Warner Losh Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: fe575 (again) In-Reply-To: <200008250749.BAA15131@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 > Boot -v might help. It will tell you the IDs of things that aren't > attached. pciconf -l might also do the trick. I'm not running the > patches myself, or I'd try that. > Cool :-) I'm doing all this with boot floppies so boot -v will be what I use :-) Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 8:42:58 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from Mail.ZEDAT.FU-Berlin.DE (mail.zedat.fu-berlin.de [130.133.1.48]) by hub.freebsd.org (Postfix) with ESMTP id 8E6EA37B42C for ; Fri, 25 Aug 2000 08:42:56 -0700 (PDT) Received: by Mail.ZEDAT.FU-Berlin.DE (Smail3.2.0.98) from komma.zedat.fu-berlin.de (130.133.1.46) with esmtp id ; Fri, 25 Aug 2000 17:42:55 +0200 (MEST) Date: Fri, 25 Aug 2000 17:42:54 +0200 From: Martin Dieringer To: freebsd-mobile@FreeBSD.ORG Cc: Kenneth Wayne Culver , Jonathan Chen Subject: Re: fe575 (again) 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 > - Modify your kernel config and remove all pcmcia/cardbus related > drivers so that kernel would work only with THIS card and I can't use any other ? No chance of combining card0 and pccbbhack0, I suppose. martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 9:20:39 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id DD8C437B42C for ; Fri, 25 Aug 2000 09:20:35 -0700 (PDT) Received: from rac1.wam.umd.edu (rac1.wam.umd.edu [128.8.10.141]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id MAA13053; Fri, 25 Aug 2000 12:20:33 -0400 (EDT) Received: from rac1.wam.umd.edu (localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id MAA21297; Fri, 25 Aug 2000 12:20:32 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id MAA21290; Fri, 25 Aug 2000 12:20:32 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Fri, 25 Aug 2000 12:20:32 -0400 (EDT) From: Kenneth Wayne Culver To: Jonathan Chen Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: fe575 (again) In-Reply-To: <20000825015938.A38451@spock.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 Alright, here's the latest, I added my pci id for my cardbus chip (ti 1225) to the hack driver, and it detects.. but says: pccbb: Could not map register memory What should I do to the code to fix this? I'm a bit stumped because I've been sitting here for a while now trying to get this to work. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= On Fri, 25 Aug 2000, Jonathan Chen wrote: > On Thu, Aug 24, 2000 at 06:47:10PM -0400, Kenneth Wayne Culver wrote: > > does anything new need to go in pccard.conf to allow the fe575 to work? It > > should be detected with the xl driver should it not? > > Sorry about not replying sooner - I've been travelling for the last week. > Anyway, to use the stopgap driver, you need to do the following: > > - Apply the patch. (The patch was diff'ed against a 4.1-stable as of 8/1.) > And make sure you have cardbus.diff.current and not newcardbus.diff, as > they are not the same thing. > - Modify your kernel config and remove all pcmcia/cardbus related drivers > - Add new driver "device pccbbhack0" and make sure you have "device xl0". > - If your have a similar cardbus bridge with a different device id, you can > add that to the list in src/sys/pci/pccbbhack.c (the device id should > show up in dmesg) > - If you have a similar 575 card with a different device id, add that to > the list of devices at the top of src/sys/pci/if_xl.c, -AND- add that to > the if statement at the beginning of the xl_attach() function. > > If everything works, you should see pccbbhack{0,1} as well as xl0 attaching > on bootup. As far as pccardd or pccard.conf is concerned, you should > ignore that as it is not being used at all. > > > -- > (o_ 1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2 _o) > \\\_\ Jonathan Chen jon@spock.org /_/// > <____) No electrons were harmed during production of this message (____> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 9:28: 3 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id 4403A37B43E for ; Fri, 25 Aug 2000 09:28:01 -0700 (PDT) Received: from rac1.wam.umd.edu (rac1.wam.umd.edu [128.8.10.141]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id MAA13520; Fri, 25 Aug 2000 12:27:59 -0400 (EDT) Received: from rac1.wam.umd.edu (localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id MAA23032; Fri, 25 Aug 2000 12:27:58 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id MAA23028; Fri, 25 Aug 2000 12:27:58 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Fri, 25 Aug 2000 12:27:58 -0400 (EDT) From: Kenneth Wayne Culver To: Jonathan Chen Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: fe575 (again) 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 > Alright, here's the latest, I added my pci id for my cardbus chip (ti > 1225) to the hack driver, and it detects.. but says: > > pccbb: Could not map register memory > > What should I do to the code to fix this? I'm a bit stumped because I've > been sitting here for a while now trying to get this to work. > > Alright, I've been looking at the code some more, and I found this: /* The IBM TP600E is gracious enough to pre-allocate a memory * space for the PCI-CardBus bridge, so all we need to do is map * it in, and save the address in the softc register */ rid=PCIR_CARDBUS_BASE_2; sc->cb_base_res=bus_alloc_resource(dev, SYS_RES_MEMORY, &rid, 0,~0,1, RF_ACTIVE); Basically this looks to me like you're assuming that all laptops pre-allocate a memory space for the pci-cardbus bridge... and that's why my laptop can't map the register space... because it's not pre-allocating memory for the bridge. I'm looking into how to do this, and when I am done, I'll make patchs to your patchs :-) for those of us who got this ethernet card with their Dell Inspiron 3800's :) Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 9:28:22 2000 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 586E637B42C for ; Fri, 25 Aug 2000 09:28:16 -0700 (PDT) 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 KAA75798; Fri, 25 Aug 2000 10:27:32 -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 KAA17563; Fri, 25 Aug 2000 10:27:25 -0600 (MDT) Message-Id: <200008251627.KAA17563@harmony.village.org> To: Martin Dieringer Subject: Re: fe575 (again) Cc: freebsd-mobile@FreeBSD.ORG, Kenneth Wayne Culver , Jonathan Chen In-reply-to: Your message of "Fri, 25 Aug 2000 17:42:54 +0200." References: Date: Fri, 25 Aug 2000 10:27:25 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Martin Dieringer writes: : so that kernel would work only with THIS card and I can't use : any other ? No chance of combining card0 and pccbbhack0, I suppose. Nope. However, the good news is that the need for these patches will be relatively short lived. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 13: 1:58 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from student.wit.edu (firstclass.wit.edu [209.54.176.10]) by hub.freebsd.org (Postfix) with ESMTP id E8B2B37B423 for ; Fri, 25 Aug 2000 13:01:56 -0700 (PDT) Message-id: Date: Fri, 25 Aug 2000 15:57:15 -0400 Subject: question To: mobile@freebsd.org From: "Ray L. Reyes" MIME-Version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org is there an updated driver for neomagic comapatibility. i have a thinkpad 600x and it doesn't recognize the video, or i can;t seem to get the resolution to adjust. please help. thank you. ray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 16: 2: 8 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from peorth.iteration.net (peorth.iteration.net [208.190.180.178]) by hub.freebsd.org (Postfix) with ESMTP id E266F37B43C for ; Fri, 25 Aug 2000 16:02:06 -0700 (PDT) Received: by peorth.iteration.net (Postfix, from userid 1000) id 6C4DC64C2F; Fri, 25 Aug 2000 18:02:06 -0500 (CDT) Date: Fri, 25 Aug 2000 18:02:06 -0500 From: "Michael C. Wu" To: "Ray L. Reyes" Cc: mobile@freebsd.org Subject: Re: question Message-ID: <20000825180206.B961@peorth.iteration.net> Mail-Followup-To: "Michael C. Wu" , "Ray L. Reyes" , mobile@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from reyes1@student.wit.edu on Fri, Aug 25, 2000 at 03:57:15PM -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Aug 25, 2000 at 03:57:15PM -0400, Ray L. Reyes scribbled: | is there an updated driver for neomagic comapatibility. i have a thinkpad | 600x and it doesn't recognize the video, or i can;t seem to get the | resolution to adjust. please help. thank you. That is XFree86 problem. See attached file if you have a NeoMagic256XL+ (aka NeoMagic2380). Use XF863.3.6 with the attached XF86Config, or XFree86-Current (If you are brave) If that does not work, ask -- +------------------------------------------------------------------+ | keichii@peorth.iteration.net | keichii@bsdconspiracy.net | | http://peorth.iteration.net/~keichii | Yes, BSD is a conspiracy. | +------------------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 18:10:20 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from spock.org (cm-24-92-52-10.nycap.rr.com [24.92.52.10]) by hub.freebsd.org (Postfix) with ESMTP id E026C37B43C for ; Fri, 25 Aug 2000 18:10:14 -0700 (PDT) Received: (from jon@localhost) by spock.org serial EF600Q3T-B7F; Fri, 25 Aug 2000 21:10:12 -0400 (EDT) (envelope-from jon) Date: Fri, 25 Aug 2000 21:10:12 -0400 From: Jonathan Chen To: Kenneth Wayne Culver Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: fe575 (again) Message-ID: <20000825211012.A74017@spock.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from culverk@wam.umd.edu on Fri, Aug 25, 2000 at 12:27:58PM -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Aug 25, 2000 at 12:27:58PM -0400, Kenneth Wayne Culver wrote: > > Alright, here's the latest, I added my pci id for my cardbus chip (ti > > 1225) to the hack driver, and it detects.. but says: > > > > pccbb: Could not map register memory > > > > What should I do to the code to fix this? I'm a bit stumped because I've > > been sitting here for a while now trying to get this to work. > > > > > Alright, I've been looking at the code some more, and I found this: > > /* The IBM TP600E is gracious enough to pre-allocate a memory > * space for the PCI-CardBus bridge, so all we need to do is map > * it in, and save the address in the softc register */ > rid=PCIR_CARDBUS_BASE_2; > sc->cb_base_res=bus_alloc_resource(dev, SYS_RES_MEMORY, &rid, > 0,~0,1, RF_ACTIVE); > > Basically this looks to me like you're assuming that all laptops > pre-allocate a memory space for the pci-cardbus bridge... and that's why > my laptop can't map the register space... because it's not pre-allocating > memory for the bridge. I'm looking into how to do this, and when I am > done, I'll make patchs to your patchs :-) for those of us who got this > ethernet card with their Dell Inspiron 3800's :) AFAIK, the PCI specs *REQUIRES* the PCI bus to pre allocate space that the attached devices requests. I don't have access to the PCI spec right now (why can't everybody put spec sheets online for free?!) but this should apply to the PCI-Cardbus bridge as well. (If I'm wrong, please correct me) In anycase, I might be able to figure out what exactly is the problem if you show me your bootup dmesg as well as the output to the following comands: pciconf -r pci0:X:Y 0x10 pciconf -r pci0:X:Y 0x14 pciconf -r pci0:X:Y 0x18 pciconf -w pci0:X:Y 0x10 0xffffffff pciconf -r pci0:X:Y 0x10 substitute the correct device numbers for X and Y - you can find that on the kernel bootup output when it says something like: pccbbhack0: mem blah-blah irq blah on at device X.Y pci0 -- (o_ 1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2 _o) \\\_\ Jonathan Chen jon@spock.org /_/// <____) No electrons were harmed during production of this message (____> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 19: 0:42 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id 3EAC337B422 for ; Fri, 25 Aug 2000 19:00:15 -0700 (PDT) Received: from rac1.wam.umd.edu (rac1.wam.umd.edu [128.8.10.141]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id WAA16036; Fri, 25 Aug 2000 22:00:11 -0400 (EDT) Received: from rac1.wam.umd.edu (localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id WAA20678; Fri, 25 Aug 2000 22:00:11 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id WAA20674; Fri, 25 Aug 2000 22:00:11 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Fri, 25 Aug 2000 22:00:11 -0400 (EDT) From: Kenneth Wayne Culver To: Jonathan Chen Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: fe575 (again) In-Reply-To: <20000825211012.A74017@spock.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 > AFAIK, the PCI specs *REQUIRES* the PCI bus to pre allocate space that the > attached devices requests. I don't have access to the PCI spec right now > (why can't everybody put spec sheets online for free?!) but this should > apply to the PCI-Cardbus bridge as well. (If I'm wrong, please correct me) > In anycase, I might be able to figure out what exactly is the problem if > you show me your bootup dmesg as well as the output to the following > comands: Well, I do'nt really know about the pci spec... but I do know that bus_alloc_resource is returning NULL, so I guess maybe it's just the fact That I'm using the ti1225 chip (although netbsd's drivers treat it the same. as the 1251) I can't give you a boot dmesg or the output to any commands because I have yet to install FreeBSD. I built my own boot floppies with your hack, and with the correct things done to the generic kernel conf file (took out pccard stuff, added your device, changed the pci id's to detect both my ti1225, and my fe575c, based on the id's in the netbsd drivers) > pciconf -r pci0:X:Y 0x10 > pciconf -r pci0:X:Y 0x14 > pciconf -r pci0:X:Y 0x18 > pciconf -w pci0:X:Y 0x10 0xffffffff > pciconf -r pci0:X:Y 0x10 > > substitute the correct device numbers for X and Y - you can find that on > the kernel bootup output when it says something like: > > pccbbhack0: mem blah-blah irq blah on at device X.Y pci0 > > When it boots up and gives the above messege .. it says pccbb: Could not map register memory under your above messege, and doesn't have anything for "mem" but only for irq and device. That is really all I can tell you until I either get a 4.1 CD burnt by someone, or hack the driver enough to make it work :-) (I don't think I can hack the driver, maybe I gave you enough info?) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 21:23: 0 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from red.juniper.net (natint.juniper.net [207.17.136.129]) by hub.freebsd.org (Postfix) with ESMTP id C657537B422 for ; Fri, 25 Aug 2000 21:22:58 -0700 (PDT) Received: from sugaree.juniper.net (sugaree.juniper.net [172.17.20.40]) by red.juniper.net (8.9.3/8.9.3) with ESMTP id VAA18217 for ; Fri, 25 Aug 2000 21:22:53 -0700 (PDT) Received: from sugaree.juniper.net (localhost [127.0.0.1]) by sugaree.juniper.net (8.9.3/8.9.3) with ESMTP id VAA39676 for ; Fri, 25 Aug 2000 21:29:45 -0700 (PDT) (envelope-from dmw@sugaree.juniper.net) Message-Id: <200008260429.VAA39676@sugaree.juniper.net> Subject: PAO support in 4.1? To: freebsd-mobile@freebsd.org From: dmw@juniper.net Reply-To: dmw@juniper.net Date: Fri, 25 Aug 2000 21:29:45 -0700 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org By any chance have the PAO features been committed into release 4.1? thanks dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 22: 8:33 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from asao.gcd.org (asao.gcd.org [210.145.125.162]) by hub.freebsd.org (Postfix) with SMTP id E96FD37B43E for ; Fri, 25 Aug 2000 22:08:14 -0700 (PDT) Received: (qmail 15258 invoked by uid 10); 26 Aug 2000 14:08:13 +0900 Received: (qmail 16603 invoked from network); 26 Aug 2000 04:42:03 -0000 Received: from chrysanthe.oikumene.gcd.org (HELO localhost) (192.168.0.12) by ns.oikumene.gcd.org with SMTP; 26 Aug 2000 04:42:03 -0000 To: freebsd-mobile@freebsd.org Subject: Re: PAO support in 4.1? From: Hiroo ONO (=?iso-2022-jp?B?GyRCPi5MbjQyQDgbKEI=?=) In-Reply-To: <200008260429.VAA39676@sugaree.juniper.net> References: <200008260429.VAA39676@sugaree.juniper.net> X-Mailer: Mew version 1.94.1 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000826134131M.hiroo@oikumene.gcd.org> Date: Sat, 26 Aug 2000 13:41:31 +0900 X-Dispatcher: imput version 20000228(IM140) Lines: 7 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I hear that it is being done by some committers. Which PAO feature do you need? From: dmw@juniper.net Date: Fri, 25 Aug 2000 21:29:45 -0700 > By any chance have the PAO features been committed into release 4.1? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 22:14:34 2000 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 2246B37B50B for ; Fri, 25 Aug 2000 22:14:26 -0700 (PDT) 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 XAA78148; Fri, 25 Aug 2000 23:14:21 -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 XAA21641; Fri, 25 Aug 2000 23:14:14 -0600 (MDT) Message-Id: <200008260514.XAA21641@harmony.village.org> To: dmw@juniper.net Subject: Re: PAO support in 4.1? Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Fri, 25 Aug 2000 21:29:45 PDT." <200008260429.VAA39676@sugaree.juniper.net> References: <200008260429.VAA39676@sugaree.juniper.net> Date: Fri, 25 Aug 2000 23:14:14 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <200008260429.VAA39676@sugaree.juniper.net> dmw@juniper.net writes: : By any chance have the PAO features been committed into release 4.1? Except for a few minor edge cases, yes. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Aug 25 23:31:51 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from iterative.iteration.net (iterative.iteration.net [208.190.180.180]) by hub.freebsd.org (Postfix) with ESMTP id 2A88337B423 for ; Fri, 25 Aug 2000 23:31:41 -0700 (PDT) Received: (from keichii@localhost) by iterative.iteration.net (8.11.0/8.11.0) id e7Q6Vbp00461; Sat, 26 Aug 2000 01:31:37 -0500 (CDT) (envelope-from keichii) Date: Sat, 26 Aug 2000 01:31:37 -0500 From: "Michael C. Wu" To: "Ray L. Reyes" Cc: mobile@freebsd.org Subject: Re: question Message-ID: <20000826013137.B403@peorth.iteration.net> References: <20000825180206.B961@peorth.iteration.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="LpQ9ahxlCli8rRTG" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000825180206.B961@peorth.iteration.net>; from keichii@peorth.iteration.net on Fri, Aug 25, 2000 at 06:02:06PM -0500 X-FreeBSD-Header: This is a subliminal message from the vast FreeBSD conspiracy project. X-Operating-System: FreeBSD iterative.iteration.net 5.0-20000815-CURRENT FreeBSD 5.0-20000815-CURRENT Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --LpQ9ahxlCli8rRTG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Aug 25, 2000 at 06:02:06PM -0500, Michael C. Wu scribbled: | On Fri, Aug 25, 2000 at 03:57:15PM -0400, Ray L. Reyes scribbled: | Use XF863.3.6 with the attached XF86Config, | or XFree86-Current (If you are brave) Sorry, forgot to attach file. Here it is. | If that does not work, ask | -- | +------------------------------------------------------------------+ | | keichii@peorth.iteration.net | keichii@bsdconspiracy.net | | | http://peorth.iteration.net/~keichii | Yes, BSD is a conspiracy. | | +------------------------------------------------------------------+ | | | To Unsubscribe: send mail to majordomo@FreeBSD.org | with "unsubscribe freebsd-mobile" in the body of the message ---end quoted text--- --LpQ9ahxlCli8rRTG Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=XF86Config # XF86Config auto-generated by XF86Setup # # Copyright (c) 1996 by The XFree86 Project, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # # Except as contained in this notice, the name of the XFree86 Project shall # not be used in advertising or otherwise to promote the sale, use or other # dealings in this Software without prior written authorization from the # XFree86 Project. # # See 'man XF86Config' for info on the format of this file Section "Files" RgbPath "/usr/X11R6/lib/X11/rgb" # FontPath "/usr/X11R6/lib/X11/fonts/misc:unscaled,/usr/X11R6/lib/X11/fonts/75dpi:unscaled,/usr/X11R6/lib/X11/fonts/misc,/usr/X11R6/lib/X11/fonts/75dpi" FontPath "/usr/X11R6/lib/X11/fonts/local" FontPath "/usr/X11R6/lib/X11/fonts/misc:unscaled" FontPath "/usr/X11R6/lib/X11/fonts/75dpi:unscaled" FontPath "/usr/X11R6/lib/X11/fonts/100dpi:unscaled" FontPath "/usr/X11R6/lib/X11/fonts/freefont" FontPath "/usr/X11R6/lib/X11/fonts/sharefont" FontPath "/usr/X11R6/lib/X11/fonts/Type1" FontPath "/usr/X11R6/lib/X11/fonts/Speedo" FontPath "/usr/X11R6/lib/X11/fonts/misc" FontPath "/usr/X11R6/lib/X11/fonts/75dpi" FontPath "/usr/X11R6/lib/X11/fonts/100dpi" FontPath "/usr/X11R6/lib/X11/fonts/TrueType" EndSection Section "ServerFlags" EndSection Section "Keyboard" Protocol "Standard" # AutoRepeat 250 40 # LeftAlt Meta # RightAlt Meta # ScrollLock Compose # RightCtl Control # XkbKeycodes "xfree86" # XkbTypes "default" # XkbCompat "default" # XkbSymbols "us(pc101)" # XkbGeometry "pc" XkbRules "xfree86" XkbModel "pc101" XkbLayout "us" EndSection Section "Pointer" # Protocol "MouseSystems" Protocol "SysMouse" Device "/dev/sysmouse" BaudRate 1200 Resolution 100 Emulate3Timeout 450 Emulate3Buttons EndSection Section "Monitor" Identifier "Primary Monitor" VendorName "Unknown" ModelName "Unknown" HorizSync 31.5-57.0 VertRefresh 50-90 Modeline "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync EndSection Section "Device" Identifier "Primary Card" VendorName "Unknown" BoardName "NeoMagic (laptop/notebook)" Chipset "NM2200" Clocks 28.32 28.32 28.32 28.32 # Chipset "NM2160" # IOBase 0xfea00000 # MemBase 0xfd000000 # VideoRam 6144 # DacSpeed 90 # Option "linear" # Option "nolinear" # Option "sw_cursor" # Option "hw_cursor" # Option "no_accel" # Option "intern_disp" # Option "extern_disp" # Option "mmio" # Option "no_mmio" # Option "lcd_center" # Option "no_stretch" EndSection Section "Screen" Driver "Accel" Device "Primary Card" Monitor "Primary Monitor" DefaultColorDepth 24 BlankTime 0 SuspendTime 0 OffTime 0 SubSection "Display" Depth 8 Modes "1024x768" EndSubSection SubSection "Display" Depth 15 Modes "1024x768" EndSubSection SubSection "Display" Depth 16 Modes "1024x768" EndSubSection SubSection "Display" Depth 24 Modes "1024x768" EndSubSection SubSection "Display" Depth 32 Modes "1024x768" EndSubSection EndSection Section "Screen" Driver "SVGA" Device "Primary Card" Monitor "Primary Monitor" DefaultColorDepth 24 BlankTime 500 SuspendTime 0 OffTime 0 SubSection "Display" Depth 8 Modes "1024x768" EndSubSection SubSection "Display" Depth 15 Modes "1024x768" EndSubSection SubSection "Display" Depth 16 Modes "1024x768" EndSubSection SubSection "Display" Depth 24 Modes "1024x768" EndSubSection SubSection "Display" Depth 32 Modes "1024x768" EndSubSection EndSection Section "Screen" Driver "VGA16" Device "Primary Card" Monitor "Primary Monitor" BlankTime 0 SuspendTime 0 OffTime 0 SubSection "Display" Depth 4 Modes "1024x768" EndSubSection EndSection Section "Screen" Driver "VGA2" Device "Primary Card" Monitor "Primary Monitor" BlankTime 0 SuspendTime 0 OffTime 0 SubSection "Display" Depth 1 Modes "1024x768" EndSubSection EndSection --LpQ9ahxlCli8rRTG-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Aug 26 8: 5:23 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from omega.ie.pitt.edu (omega.ie.pitt.edu [136.142.89.83]) by hub.freebsd.org (Postfix) with ESMTP id AF33937B423 for ; Sat, 26 Aug 2000 08:05:16 -0700 (PDT) Received: from ger_sun.wabash.edu (ger_sun.wabash.edu [161.32.151.172]) by omega.ie.pitt.edu (8.10.0/8.10.0) with ESMTP id e7QF4gg17241; Sat, 26 Aug 2000 11:04:42 -0400 (EDT) Date: Sat, 26 Aug 2000 10:04:38 -0500 (EST) From: "Gary E. Rafe" X-Sender: grafe@ger_sun.wabash.edu To: Hiroo ONO Cc: freebsd-mobile@FreeBSD.org Subject: Re: PAO support in 4.1? In-Reply-To: <20000826134131M.hiroo@oikumene.gcd.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, 26 Aug 2000, Hiroo ONO wrote: !I hear that it is being done by some committers. !Which PAO feature do you need? We have an ActionTec Datalink v.90 PCCARD modem that has been working well in a Toshiba 220CDS for almost a year now under 3.x-RELEASE with the PAO3 patches. Yesterday, I tried to upgrade the notebook to 4.1-RELEASE, and found the sio(4) driver is broken for this pc-card. When pccardd detects it, it is reported as a 16450? device with a "bogus IIR_TXRDY register". Then, when we try to talk to the card with cu(1), the system hangs hard, requiring a hard reset to recover. We've since restored 3.3-RELEASE with the PAO3 patches, and we can talk with the card again. We'll probably upgrade the OS on this notebook to 3.5.1-RELEASE with the appropriate PAO3 patches soon (we want linux_base-6.1), unless sio(4) is broken there, too. -- Gary gerst4+@pitt.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Aug 26 12:15:18 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from eddings.acpub.duke.edu (eddings.acpub.duke.edu [152.3.233.76]) by hub.freebsd.org (Postfix) with ESMTP id 868E437B424 for ; Sat, 26 Aug 2000 12:15:08 -0700 (PDT) Received: from bobzilla.adsl.duke.edu (bobzilla.adsl.duke.edu [152.16.67.15]) by eddings.acpub.duke.edu (8.9.3/8.9.3/Duke-5.0.0) with ESMTP id PAA02809; Sat, 26 Aug 2000 15:15:05 -0400 (EDT) Received: (from sto@localhost) by bobzilla.adsl.duke.edu (8.9.3/8.9.3) id PAA77162; Sat, 26 Aug 2000 15:15:02 -0400 (EDT) (envelope-from sto) Date: Sat, 26 Aug 2000 15:15:02 -0400 From: "Sean O'Connell" To: freebsd-mobile@FreeBSD.ORG Cc: "Gary E. Rafe" Subject: Re: PAO support in 4.1? Message-ID: <20000826151502.A77032@stat.Duke.EDU> Reply-To: "Sean O'Connell" References: <20000826134131M.hiroo@oikumene.gcd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from grafe@omega.ie.pitt.edu on Sat, Aug 26, 2000 at 10:04:38AM -0500 X-Organization: House of Schmutzli X-Kitties: Bitty Maya CJ Keisha Jacob Hopey X-Hound: Bob X-OS-of-Choice: FreeBSD Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Gary E. Rafe stated: : : On Sat, 26 Aug 2000, Hiroo ONO wrote: : : !I hear that it is being done by some committers. : !Which PAO feature do you need? : : We have an ActionTec Datalink v.90 PCCARD modem : that has been working well in a Toshiba 220CDS : for almost a year now under 3.x-RELEASE with the PAO3 patches. : : Yesterday, I tried to upgrade the notebook to 4.1-RELEASE, : and found the sio(4) driver is broken for this pc-card. : When pccardd detects it, it is reported as a 16450? device : with a "bogus IIR_TXRDY register". : Then, when we try to talk to the card with cu(1), : the system hangs hard, requiring a hard reset to recover. : : We've since restored 3.3-RELEASE with the PAO3 patches, : and we can talk with the card again. : : We'll probably upgrade the OS on this notebook to 3.5.1-RELEASE : with the appropriate PAO3 patches soon (we want linux_base-6.1), : unless sio(4) is broken there, too. Gary/Mobile List- This sounds a lot like what happened when I tride to use a Zoom 56K modem Model 3000 (this is the follow on to the 2975 .. which works as a 16550A with appropriate reset entry in the pccard.conf). The Model 3000 is recognized as a UART 16450 and then when you use ppp in term mode, it locks the machine solid (you cannot even break into the debugger) both on a 3.3-RELEASE--his notebook-- and my 4.1-S from earlier this month. Unfortunately, I no longer have the card or access to PAO machine to see if this made any difference. As a side note, the Model 2975 did _not_ need the reset under PAO ... only under main FreeBSD .. is there some magic in the PAO sio code that code save our butts here? The other weird thing about this modem is that the Manufacturers ID was completely ignored (generated an error) by pccard[dc] and the model name had to be matched in the pccard.conf entry. #Zoom/PC Card 56K (Model 3000) card "V90&K56Flex PCMCIA FAX MODEM" "" config 0x22 "sio" ? This card was bought by my boss because it looked much like the Model 2975 that worked up until the last big thunderstorm :( He was able to return the card and we mail-ordered a Model 2975. The only fear is that this card will eventually replace the 2975 on the market. The box says on it that it has an onboard DSP, but then goes on to say that it works for Windows 9x, NT, 2000. I fear that we may be seeing more and more questions about this type of modem. Thanks S -- 1--------01---------01--------01--------01--------01--------01--------0 Sean O'Connell sean@stat.Duke.EDU To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Aug 26 13:18:16 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.gulp.org (mail.gulp.org [204.245.54.134]) by hub.freebsd.org (Postfix) with ESMTP id 98C5837B423 for ; Sat, 26 Aug 2000 13:18:14 -0700 (PDT) Received: (from scarter@localhost) by mail.gulp.org (8.9.3/8.9.3) id NAA16002; Sat, 26 Aug 2000 13:17:58 -0700 (MST) (envelope-from scarter@gblx.net) X-Authentication-Warning: mail.gulp.org: scarter set sender to scarter@gblx.net using -f Date: Sat, 26 Aug 2000 13:17:57 -0700 From: Steve Carter To: "Gary E. Rafe" Cc: Hiroo ONO , freebsd-mobile@FreeBSD.ORG Subject: Re: PAO support in 4.1? Message-ID: <20000826131757.A15901@gblx.net> References: <20000826134131M.hiroo@oikumene.gcd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from grafe@omega.ie.pitt.edu on Sat, Aug 26, 2000 at 10:04:38AM -0500 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Gary E. Rafe [000826 08:05]: > We'll probably upgrade the OS on this notebook to 3.5.1-RELEASE > with the appropriate PAO3 patches soon (we want linux_base-6.1), > unless sio(4) is broken there, too. I tried that a few weeks ago and 3.5.1-RELEASE and PAO didn't work for me. I had to go back to 3.5-RELEASE for PAO to work. -Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Aug 26 18:22:41 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from red.juniper.net (natint.juniper.net [207.17.136.129]) by hub.freebsd.org (Postfix) with ESMTP id 662C037B423 for ; Sat, 26 Aug 2000 18:22:40 -0700 (PDT) Received: from sugaree.juniper.net (sugaree.juniper.net [172.17.20.40]) by red.juniper.net (8.9.3/8.9.3) with ESMTP id SAA07543; Sat, 26 Aug 2000 18:22:39 -0700 (PDT) Received: from sugaree.juniper.net (localhost [127.0.0.1]) by sugaree.juniper.net (8.9.3/8.9.3) with ESMTP id SAA43395; Sat, 26 Aug 2000 18:29:36 -0700 (PDT) (envelope-from dmw@sugaree.juniper.net) Message-Id: <200008270129.SAA43395@sugaree.juniper.net> To: Warner Losh Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: PAO support in 4.1? In-reply-to: Your message of "Fri, 25 Aug 2000 23:14:14 MDT." <200008260514.XAA21641@harmony.village.org> Reply-To: dmw@juniper.net Date: Sat, 26 Aug 2000 18:29:36 -0700 From: dave Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org : By any chance have the PAO features been committed into release 4.1? Except for a few minor edge cases, yes. Warner OK, thanks. I'm just grasping at straws at this point. I loaded 4.1 on my Sony vaio Z505JS and am having a cdrom drive mounting issue. I'm getting a "cd9660: Device not configured" error message when I try to mount it. I thought I was using the right device (acd0c), and it's there in /dev, so one thought was maybe PAO support was not there yet. dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Aug 26 20:25:16 2000 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 3983E37B422 for ; Sat, 26 Aug 2000 20:25:14 -0700 (PDT) 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 VAA83135; Sat, 26 Aug 2000 21:25:13 -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 VAA82515; Sat, 26 Aug 2000 21:25:03 -0600 (MDT) Message-Id: <200008270325.VAA82515@harmony.village.org> To: dmw@juniper.net Subject: Re: PAO support in 4.1? Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Sat, 26 Aug 2000 18:29:36 PDT." <200008270129.SAA43395@sugaree.juniper.net> References: <200008270129.SAA43395@sugaree.juniper.net> Date: Sat, 26 Aug 2000 21:25:03 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <200008270129.SAA43395@sugaree.juniper.net> dave writes: : OK, thanks. I'm just grasping at straws at this point. I loaded 4.1 on my : Sony vaio Z505JS and am having a cdrom drive mounting issue. I'm getting a : "cd9660: Device not configured" error message when I try to mount it. I : thought I was using the right device (acd0c), and it's there in /dev, so one : thought was maybe PAO support was not there yet. What does your dmesg day? WArner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Aug 26 20:41: 5 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mta6.snfc21.pbi.net (mta6.snfc21.pbi.net [206.13.28.240]) by hub.freebsd.org (Postfix) with ESMTP id 4E72237B43E for ; Sat, 26 Aug 2000 20:41:04 -0700 (PDT) Received: from uniqsite.com ([63.197.148.179]) by mta6.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0FZX005FXM70AQ@mta6.snfc21.pbi.net> for mobile@freebsd.org; Sat, 26 Aug 2000 20:40:13 -0700 (PDT) Date: Sat, 26 Aug 2000 20:40:48 -0700 (PDT) From: Gorden Fischer Subject: OSS, where? X-Sender: gfish123@uniqsite.com To: Mobile Computing 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 Can someone send me the URL for open sound system? I saw a discussion a while back but the URL is not working. Fischer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Aug 26 20:48:56 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from isris.pair.com (isris.pair.com [209.68.2.39]) by hub.freebsd.org (Postfix) with ESMTP id 399F237B423 for ; Sat, 26 Aug 2000 20:48:54 -0700 (PDT) Received: (from rooneg@localhost) by isris.pair.com (8.9.1/8.6.12) id XAA03227; Sat, 26 Aug 2000 23:48:45 -0400 (EDT) X-Envelope-To: mobile@FreeBSD.ORG Message-ID: <20000826234845.A218@electricjellyfish.net> Date: Sat, 26 Aug 2000 23:48:45 -0400 From: Garrett Rooney To: Gorden Fischer , Mobile Computing Subject: Re: OSS, where? References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1 In-Reply-To: ; from Gorden Fischer on Sat, Aug 26, 2000 at 08:40:48PM -0700 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Aug 26, 2000 at 08:40:48PM -0700, Gorden Fischer wrote: > > Can someone send me the URL for open sound system? I saw a discussion > a while back but the URL is not working. http://www.opensound.com -- garrett rooney my pid is inigo montoya. rooneg@electricjellyfish.net you kill -9 my parent process. http://electricjellyfish.net/ prepare to vi. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Aug 26 21:14:12 2000 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 6665137B423 for ; Sat, 26 Aug 2000 21:14:10 -0700 (PDT) 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 WAA83268; Sat, 26 Aug 2000 22:14:09 -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 WAA82967; Sat, 26 Aug 2000 22:13:58 -0600 (MDT) Message-Id: <200008270413.WAA82967@harmony.village.org> To: "Gary E. Rafe" Subject: Re: PAO support in 4.1? Cc: Hiroo ONO , freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Sat, 26 Aug 2000 10:04:38 CDT." References: Date: Sat, 26 Aug 2000 22:13:58 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message "Gary E. Rafe" writes: : We have an ActionTec Datalink v.90 PCCARD modem : that has been working well in a Toshiba 220CDS : for almost a year now under 3.x-RELEASE with the PAO3 patches. Hmmm, sounds like an extra quirk is needed for sio. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message