From owner-freebsd-mobile Thu Nov 13 09:38:21 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA00331 for mobile-outgoing; Thu, 13 Nov 1997 09:38:21 -0800 (PST) (envelope-from owner-freebsd-mobile) Received: from ns.mt.sri.com (SRI-56K-FR.mt.net [206.127.65.42]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA00315 for ; Thu, 13 Nov 1997 09:38:10 -0800 (PST) (envelope-from nate@rocky.mt.sri.com) Received: from rocky.mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.8.8/8.8.8) with ESMTP id KAA19972; Thu, 13 Nov 1997 10:37:45 -0700 (MST) (envelope-from nate@rocky.mt.sri.com) Received: (from nate@localhost) by rocky.mt.sri.com (8.7.5/8.7.3) id KAA09301; Thu, 13 Nov 1997 10:37:43 -0700 (MST) Date: Thu, 13 Nov 1997 10:37:43 -0700 (MST) Message-Id: <199711131737.KAA09301@rocky.mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Patrick Gardella Cc: Sergey Pak , freebsd-mobile@freebsd.org Subject: RE: PCMCIA support In-Reply-To: References: <346B1B10.174ECCC1@metrocon.com> X-Mailer: VM 6.29 under 19.15 XEmacs Lucid Sender: owner-freebsd-mobile@freebsd.org X-Loop: FreeBSD.org Precedence: bulk [ limited to mobile ] > >I can't make my pcmcia modem work. Meanwhile my pcmcia network adapter > >works fine. I'll bet your ethernet card is a 3Com or an IBM, right? You're using the dedicated cards. > >I bump to "no PC-CARD slots" error message when I start pccardd daemon. > >I found alternative pccard kernel support. The alternative support means that you can't mix the 'dedicated' support and alternative support. So, you can't use the zp/ze drivers and the alternative of 'generic' PCCARD support. > >controller crd0 > >device pcic0 at crd? > >device pcic1 at crd? > > > >The problem is I can't compile the modified kernel running into error: > >"Dedicated PCMCIA driver and Generic PCMCIA support can't be mixed" Then remove either the zp driver and replace it with the ep driver, or remove the ze driver and replace it with the ed driver. > >Questions: > >Why generic pcmcia support can't recognize pccard slots? Because you haven't created the devices in /dev. # cd /dev # MAKEDEV card0 # MAKEDEV card1 > >How can turn off generic pcmcia support compiling new kernel? You *want* generic support, so remove the ze/zp drivers. Nate