From owner-freebsd-questions Fri May 30 01:10:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id BAA05871 for questions-outgoing; Fri, 30 May 1997 01:10:45 -0700 (PDT) Received: from gatekeeper.barcode.co.il (gatekeeper.barcode.co.il [192.116.93.17]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA05865 for ; Fri, 30 May 1997 01:10:41 -0700 (PDT) Received: (from nadav@localhost) by gatekeeper.barcode.co.il (8.8.5/8.6.12) id LAA22896; Fri, 30 May 1997 11:09:43 +0300 (IDT) Date: Fri, 30 May 1997 11:09:42 +0300 (IDT) From: Nadav Eiron To: New User cc: "questions@freebsd.org" Subject: Re: Compiling Kernel In-Reply-To: <199705300757.JAA05908@rpops002.rp-online.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Fri, 30 May 1997, New User wrote: > -- [ From: New User * EMC.Ver #2.5.02 ] -- > > > Whenever I try to compile my kernel (typing "make depend" and then "make") I > get an error message concerning the PCI-Bus. My problem: I have got an > 486DX/40 and only VL-slots! The examples for "my" own kernel were the > GENERIC kernel and the referring pages in the handbook. That is why I ask > YOU since I do not know where my mistake could be. You've removed the PCI bus declaration from your kernel config file but have left in drivers for PCI devices (namely, de0, vx0 and fxp0). The system is complaining that you're trying to configure PCI devices without a PCI bus. Remove all PCI devices from the kernel config and you should be fine. There are many other things you can remove (EISA support to name one), if you want a smaller kernel still. [kernel config snipped] Nadav