From owner-freebsd-questions@FreeBSD.ORG Tue Mar 30 16:38:14 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F26116A4CF for ; Tue, 30 Mar 2004 16:38:14 -0800 (PST) Received: from calis.blacksun.org (calis.blacksun.org [216.254.108.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7669F43D2F for ; Tue, 30 Mar 2004 16:38:14 -0800 (PST) (envelope-from don@calis.blacksun.org) Received: by calis.blacksun.org (Postfix, from userid 1001) id EF5671707A; Tue, 30 Mar 2004 19:41:41 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by calis.blacksun.org (Postfix) with ESMTP id CA85717079; Tue, 30 Mar 2004 19:41:41 -0500 (EST) Date: Tue, 30 Mar 2004 19:41:41 -0500 (EST) From: Don To: "Brian G." In-Reply-To: Message-ID: <20040330193842.C20889@calis.blacksun.org> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-questions@freebsd.org Subject: Re: compiling kernel :( X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Mar 2004 00:38:14 -0000 > whenever i try to run it i get an error and a question wheter i have added > USER_LDT option to my kernel > which brings me to my current problem > whenever i attempt to compile my kernel i get this after a while : The answer to your question is in the file you sent: > umass.o:/usr/src/sys/dev/usb/umass.c:2683: more undefined references to > `xpt_done' follow > device umass # Disks/Mass storage - Requires scbus and da You have defined umass but the driver specifically says it requires scbus and da which you have not defined. The same is true of your network cards. You have defined ethernet cards whcih require the miibus and yet you have not defined the miibus device in your config file. The answers are there but you need to sit down and actually read the kernel config file. If you randomly delete or include options without reading them then the kernel is not going to compile. -Don