Date: Thu, 12 Sep 2002 22:11:48 +0200 From: David =?iso-8859-1?Q?Sieb=F6rger?= <drs@rucus.ru.ac.za> To: Razvan Roncov <razvan@compu-creations.com> Cc: freebsd-questions@FreeBSD.org Subject: Re: Custom Kernel - Make error Message-ID: <20020912201148.GD2903@rucus.ru.ac.za> In-Reply-To: <200209121411.24568.razvan@compu-creations.com> References: <200209121411.24568.razvan@compu-creations.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Thu 2002-09-12 (14:11), Razvan Roncov wrote: > I get the following error when I do "make": > > b2# make [snip] > umass.o(.text+0x1911): undefined reference to `xpt_done' > umass.o: In function `umass_cam_sense_cb': > umass.o(.text+0x1988): undefined reference to `xpt_done' > umass.o(.text+0x1999): undefined reference to `xpt_done' > *** Error code 1 > > Stop in /usr/src/sys/compile/MYKERNEL. You've included 'device umass' in your config: > device umass # Disks/Mass storage - Requires scbus and da but you've commented out the scbus and da that it says are required: > #device scbus # SCSI bus (required) > #device da # Direct Access (disks) You'll need to either comment out umass, or uncomment scbus and da. -- David Siebörger drs@rucus.ru.ac.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020912201148.GD2903>