From owner-freebsd-questions@FreeBSD.ORG Tue Apr 15 11:26:25 2003 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 A9CA937B407 for ; Tue, 15 Apr 2003 11:26:25 -0700 (PDT) Received: from blueyonder.co.uk (pcow058o.blueyonder.co.uk [195.188.53.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB29A43F75 for ; Tue, 15 Apr 2003 11:26:24 -0700 (PDT) (envelope-from jfm@blueyonder.co.uk) Received: from lexx ([62.31.198.203]) by blueyonder.co.uk with Microsoft SMTPSVC(5.5.1877.757.75); Tue, 15 Apr 2003 19:25:37 +0100 From: John Murphy To: Jason Griffis Date: Tue, 15 Apr 2003 19:25:34 +0100 Message-ID: References: <200304151210.54251.jgriffis@ec.rr.com> In-Reply-To: <200304151210.54251.jgriffis@ec.rr.com> X-Mailer: Forte Agent 1.9/32.560 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable cc: questions@FreeBSD.ORG Subject: Re: Problems with Make while configuring the kernel for FreeBSD 5.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: jfm@blueyonder.co.uk List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2003 18:26:26 -0000 Jason Griffis wrote: >Basically everything is working fine until it goes to link the kernel: > >linking kernel >umass.o: In function `umass_cam_attach_sim': >umass.o(.text+0x1851): undefined reference to `cam_simq_alloc' >umass.o(.text+0x189c): undefined reference to `cam_sim_alloc' >umass.o(.text+0x18ad): undefined reference to `cam_simq_free' >umass.o(.text+0x18c9): undefined reference to `xpt_bus_register' >umass.o: In function `umass_cam_rescan_callback': >umass.o(.text+0x1903): undefined reference to `xpt_free_path' >umass.o: In function `umass_cam_rescan': >umass.o(.text+0x1975): undefined reference to `xpt_periph' >umass.o(.text+0x1984): undefined reference to `xpt_create_path' >umass.o(.text+0x19a0): undefined reference to `xpt_setup_ccb' >umass.o(.text+0x19bd): undefined reference to `xpt_action' >umass.o: In function `umass_cam_detach_sim': >umass.o(.text+0x1b0b): undefined reference to `xpt_bus_deregister' >umass.o(.text+0x1b29): undefined reference to `cam_sim_free' >umass.o: In function `umass_cam_detach': >umass.o(.text+0x1b94): undefined reference to `xpt_create_path' >umass.o(.text+0x1bb9): undefined reference to `xpt_async' >umass.o(.text+0x1bc4): undefined reference to `xpt_free_path' >umass.o: In function `umass_cam_action': >umass.o(.text+0x1f70): undefined reference to `xpt_done' >umass.o: In function `umass_cam_cb': >umass.o(.text+0x20bc): undefined reference to `xpt_done' >umass.o: In function `umass_cam_sense_cb': >umass.o(.text+0x2221): undefined reference to `xpt_done' >umass.o: In function `umass_cam_quirk_cb': >umass.o(.text+0x2244): undefined reference to `xpt_done' >*** Error code 1 > >Stop in /usr/src/sys/i386/compile/TRONDEMON. ># > >Any help would be appreciated as this is my first attempt at anything = this=20 >critical. I'll also paste the kernel config I'm trying to use. device umass requires scbus and da > ># SCSI peripherals >#device scbus # SCSI bus (required) >#device ch # SCSI media changers >#device da # Direct Access (disks) >device umass # Disks/Mass storage - Requires scbus = and da >device ums # Mouse = ^^^^^^^^^^^^^^^^^^^^^ >device urio # Diamond Rio 500 MP3 player >device uscanner # Scanners ># USB Ethernet, requires mii >#device aue # ADMtek USB ethernet >#device cue # CATC USB ethernet >#device kue # Kawasaki LSI USB ethernet HTH John.