From owner-freebsd-current@FreeBSD.ORG Mon Aug 16 04:35:07 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9791D16A4CE; Mon, 16 Aug 2004 04:35:07 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FF0543D1D; Mon, 16 Aug 2004 04:35:07 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i7G4WLC9053631; Sun, 15 Aug 2004 22:32:21 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sun, 15 Aug 2004 22:32:42 -0600 (MDT) Message-Id: <20040815.223242.84376882.imp@bsdimp.com> To: oberman@es.net From: "M. Warner Losh" In-Reply-To: <20040816042215.99E275D04@ptavv.es.net> References: <20040815.171951.109629809.imp@bsdimp.com> <20040816042215.99E275D04@ptavv.es.net> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: truckman@FreeBSD.org cc: freebsd-current@FreeBSD.org cc: sah@softcardsystems.com Subject: Re: pccard/cbb problems X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 04:35:07 -0000 In message: <20040816042215.99E275D04@ptavv.es.net> "Kevin Oberman" writes: : > Date: Sun, 15 Aug 2004 17:19:51 -0600 (MDT) : > From: "M. Warner Losh" : > : > In message: <200408152303.i7FN3j29001176@gw.catspoiler.org> : > Don Lewis writes: : > : On 15 Aug, M. Warner Losh wrote: : > : > In message: <20040815014707.1C5365D04@ptavv.es.net> : > : > "Kevin Oberman" writes: : > : > : > Date: Sat, 14 Aug 2004 16:20:10 -0600 (MDT) : > : > : > From: "M. Warner Losh" : > : > : > Sender: owner-freebsd-current@freebsd.org : > : > : > : > : > : > In message: : > : > : > Sam writes: : > : > : > : module cbb already exists! : > : > : > : > : > : > That's odd. I've never seen this. How do you create it? : > : > : : > : > : I have been seeing this since a kernel build on Aug 13. My kernel from : > : > : Aug. 11 was fine. Since I have cbb in my kernel, it looks like something : > : > : is trying to load cbb again at boot time. : > : > : > : > OK. That's very odd. Nothing should be trying to load it. This is : > : > in the time frame I committed my split... : > : : > : I'm seeing the same thing here and I don't even have a cbb on that : > : machine. : > : > I think that this may be due to bugs in the loader. It appears that : > cbb has depends on exca that I neglected to commit, so I've done that : > in the hopes of things working better. : : Bad news. I just rebuilt my system and the error remains. : Copyright (c) 1992-2004 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.2-CURRENT #15: Sun Aug 15 20:50:12 PDT 2004 : oberman@puppeteer.es.net:/usr/obj/usr/src/sys/IBM-T30-D : module cbb already present! : Timecounter "i8254" frequency 1193182 Hz quality 0 : CPU: Intel(R) Pentium(R) 4 Mobile CPU 1.80GHz (1198.99-MHz 686-class CPU) : Origin = "GenuineIntel" Id = 0xf24 Stepping = 4 : Features=0x3febf9ff : real memory = 536281088 (511 MB) : avail memory = 515043328 (491 MB) Does this solve your problem? Warner Index: pccbb_isa.c =================================================================== RCS file: /home/ncvs/src/sys/dev/pccbb/pccbb_isa.c,v retrieving revision 1.1 diff -u -r1.1 pccbb_isa.c --- pccbb_isa.c 12 Aug 2004 06:50:29 -0000 1.1 +++ pccbb_isa.c 16 Aug 2004 04:32:14 -0000 @@ -217,5 +217,4 @@ }; DRIVER_MODULE(cbb, isa, cbb_isa_driver, cbb_devclass, 0, 0); -MODULE_VERSION(cbb, 1); MODULE_DEPEND(cbb, exca, 1, 1, 1); Index: pccbb_pci.c =================================================================== RCS file: /home/ncvs/src/sys/dev/pccbb/pccbb_pci.c,v retrieving revision 1.1 diff -u -r1.1 pccbb_pci.c --- pccbb_pci.c 12 Aug 2004 06:50:29 -0000 1.1 +++ pccbb_pci.c 16 Aug 2004 04:32:14 -0000 @@ -651,5 +651,4 @@ }; DRIVER_MODULE(cbb, pci, cbb_driver, cbb_devclass, 0, 0); -MODULE_VERSION(cbb, 1); MODULE_DEPEND(cbb, exca, 1, 1, 1);