From owner-freebsd-newbies@FreeBSD.ORG Sun Jan 2 18:47:55 2005 Return-Path: Delivered-To: freebsd-newbies@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A283116A4CE for ; Sun, 2 Jan 2005 18:47:55 +0000 (GMT) Received: from mail.freeode.co.uk (freeode.co.uk [213.162.123.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id D247543D1F for ; Sun, 2 Jan 2005 18:47:54 +0000 (GMT) (envelope-from sub01@freeode.co.uk) Received: from lexx (lexx.freeode.co.uk [10.253.253.2]) by mail.freeode.co.uk (8.12.10/8.12.10) with ESMTP id j02IllCZ072339; Sun, 2 Jan 2005 18:47:48 GMT (envelope-from sub01@freeode.co.uk) From: John Murphy To: "Emon" Date: Sun, 02 Jan 2005 18:47:47 +0000 Message-ID: References: <20050102163014.10356.qmail@gawab.com> In-Reply-To: <20050102163014.10356.qmail@gawab.com> X-Mailer: Forte Agent 1.93/32.576 English (American) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: newbies@freebsd.org Subject: Re: kernel compiling prob X-BeenThere: freebsd-newbies@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: sub01@freeode.co.uk List-Id: Gathering place for new users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Jan 2005 18:47:55 -0000 Emon wrote: >Hello every one > >I am a newbie, I am using FreeBSD 4.10 & I was trying to rebild >a new kernel for my system(just trying). We aren't supposed to answer technical questions on this list but it's likely that it will be closing soon anyway, so I'll risk it ;) For future reference: You should send technical questions to FreeBSD-Questions@FreeBSD.ORG [snip] >umass.o: In function `umass_cam_attach_sim': >umass.o(.text+0x1637): undefined reference to `cam_simq_alloc' [snip] These give a clue as to where to look. 'umass' is a USB device and in the USB section of your configuration file we find: >device umass # Disks/Mass storage - Requires scbus and da But in the SCSI peripherals section you've disabled scbus and da: ># SCSI peripherals >#device scbus # SCSI bus (required) >#device da # Direct Access (disks) So you either need to enable those two devices or (if you don't have any USB mass storage devices) disable the umass line. >Thanks in advance >Jadukor You're welcome. -- John.