RE: Error during 'make' phase of kernel compilation

2003-08-01 Thread Daniel Cody
Thanks, that did the trick!

-Original Message-
From: Daniel Bye [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 31, 2003 11:31 AM
To: [EMAIL PROTECTED]
Subject: Re: Error during 'make' phase of kernel compilation


On Thu, Jul 31, 2003 at 11:05:58AM -0400, Daniel Cody wrote:

[---snip---]

 aic.o: In function `aic_detach':
 aic.o(.text+0x1b66): undefined reference to `xpt_async'
 aic.o(.text+0x1b6e): undefined reference to `xpt_free_path'
 aic.o(.text+0x1b7c): undefined reference to `xpt_bus_deregister'
 aic.o(.text+0x1b86): undefined reference to `cam_sim_free'
 *** Error code 1
 
 Stop in /usr/src/sys/compile/KERNATTICUS.

Do you have any SCSI devices attached to the system?  If so, you need to
enable:

device scbus
device da  # for direct access devices, such as disks

and recompile.  You might also want to uncomment `options
SCSI_DELAY=15000'
as well.  If 15 seconds is too long to wait (most modern SCSI devices
settle
much more quickly than this - I set this down to 5 seconds) you can tune

this value down.

If you have no SCSI devices, then disable:

device  adw
device  aha0at isa?
device  aic0at isa?
device  ncv # NCR 53C500
device  stg # TMC 18C30/18C50

and try again.

HTH

Dan

-- 
Daniel Bye

PGP Key: ftp://ftp.slightlystrange.org/pgpkey/dan.asc
PGP Key fingerprint: 3B9D 8BBB EB03 BA83 5DB4 3B88 86FC F03A 90A1 BE8F
 _
  ASCII ribbon campaign ( )
 - against HTML, vCards and  X
- proprietary attachments in e-mail / \
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Error during 'make' phase of kernel compilation

2003-07-31 Thread Daniel Cody
I just got my first FreeBSD box up a couple of days ago, and I decided to try creating 
a custom kernel. I followed the directions in the handbook. Unfortunately, I received 
this output after issuing the 'make' command:

.
.
.
aic.o(.text+0x129e): undefined reference to `xpt_done'
aic.o: In function `aic_timeout':
aic.o(.text+0x12d4): undefined reference to `xpt_print_path'
aic.o(.text+0x1340): undefined reference to `xpt_print_path'
aic.o(.text+0x1379): undefined reference to `xpt_freeze_simq'
aic.o: In function `aic_intr':
aic.o(.text+0x15c5): undefined reference to `xpt_async'
aic.o: In function `aic_reset':
aic.o(.text+0x180c): undefined reference to `xpt_async'
aic.o: In function `aic_attach':
aic.o(.text+0x1a36): undefined reference to `cam_simq_alloc'
aic.o(.text+0x1a6b): undefined reference to `cam_sim_alloc'
aic.o(.text+0x1a7b): undefined reference to `cam_simq_free'
aic.o(.text+0x1a92): undefined reference to `xpt_bus_register'
aic.o(.text+0x1aae): undefined reference to `xpt_create_path'
aic.o(.text+0x1ac1): undefined reference to `xpt_bus_deregister'
aic.o(.text+0x1acb): undefined reference to `cam_sim_free'
aic.o: In function `aic_detach':
aic.o(.text+0x1b66): undefined reference to `xpt_async'
aic.o(.text+0x1b6e): undefined reference to `xpt_free_path'
aic.o(.text+0x1b7c): undefined reference to `xpt_bus_deregister'
aic.o(.text+0x1b86): undefined reference to `cam_sim_free'
*** Error code 1

Stop in /usr/src/sys/compile/KERNATTICUS.





I had already done a '/usr/sbin/config KERNATTICUS' and a 'make depend' in the proper 
directories. Attached is a copy of my configuration file.
Any help would be greatly appreciated.

Cody
 KERNATTICUS 


KERNATTICUS
Description: KERNATTICUS
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]