Re: kernel-building error

2003-08-14 Thread mess-mate
On Fri, 8 Aug 2003 09:49:08 -0700
Kent Stewart [EMAIL PROTECTED] wrote:

|On Friday 08 August 2003 07:10 am, mess-mate wrote:
| Hi,
| An error occurs when building my kernel :(
| What does this mean ?? :
|
|That you deleted options without reading what is required. Read the 
|requirements for umass in the USB section and reactivate the required 
|pieces.
|
|Kent
|
|
| linking kernel
| umass.o: In function `umass_cam_attach_sim':
| umass.o(.text+0x17c7): undefined reference to `cam_simq_alloc'
| umass.o(.text+0x1818): undefined reference to `cam_sim_alloc'
| umass.o(.text+0x1827): undefined reference to `cam_simq_free'
| umass.o(.text+0x1847): undefined reference to `xpt_bus_register'
| umass.o: In function `umass_cam_rescan_callback':
| umass.o(.text+0x1883): undefined reference to `xpt_free_path'
| umass.o: In function `umass_cam_rescan':
| umass.o(.text+0x18f5): undefined reference to `xpt_periph'
| umass.o(.text+0x1904): undefined reference to `xpt_create_path'
| umass.o(.text+0x1920): undefined reference to `xpt_setup_ccb'
| umass.o(.text+0x193d): undefined reference to `xpt_action'
| umass.o: In function `umass_cam_detach_sim':
| umass.o(.text+0x1a2c): undefined reference to `xpt_bus_deregister'
| umass.o(.text+0x1a48): undefined reference to `cam_sim_free'
| umass.o: In function `umass_cam_action':
| umass.o(.text+0x1ebd): undefined reference to `xpt_done'
| umass.o: In function `umass_cam_cb':
| umass.o(.text+0x202b): undefined reference to `xpt_done'
| umass.o: In function `umass_cam_sense_cb':
| umass.o(.text+0x2191): undefined reference to `xpt_done'
| umass.o: In function `umass_cam_quirk_cb':
| umass.o(.text+0x21bb): undefined reference to `xpt_done'
| *** Error code 1
|
| Thanks for your help.
| mess-mate
|
Thanks for your help.
Problem semi-solved. Disabled 'umass' in the kernel and all 
goes well.
I don't know whar the requirements are for 'umass', what's 
this beast ??
mess-mate
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: kernel-building error

2003-08-10 Thread mess-mate
Thanks Marc.
Next time I'll read the config file better.
A+
mess-mate

On Fri, 8 Aug 2003 14:59:46 -0700
Mark Woodson [EMAIL PROTECTED] wrote:

|On Friday 08 August 2003 12:47 pm, mess-mate wrote:
| | umass.o: In function `umass_cam_quirk_cb':
| | umass.o(.text+0x21bb): undefined reference to `xpt_done'
| | *** Error code 1
| |
| | Thanks for your help.
| | mess-mate
|
| Thanks for your help.
| Problem semi-solved. Disabled 'umass' in the kernel and all
| goes well.
| I don't know whar the requirements are for 'umass', what's
| this beast ??
|
|umass is USB mass storage (a usb hard drive).
|
|The requirements for umass are:  scbus and da (scsi bus and scsi direct 
|access) as the line states in the kernel config file
|device  umass   # Disks/Mass storage - Requires scbus and da
|
|The requirements for a device or option are listed in the config file.  
|generally.
|
|-Mark
|
|___
|[EMAIL PROTECTED] mailing list
|http://lists.freebsd.org/mailman/listinfo/freebsd-questions
|To unsubscribe, send any mail to [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: kernel-building error

2003-08-09 Thread Kent Stewart
On Friday 08 August 2003 07:10 am, mess-mate wrote:
 Hi,
 An error occurs when building my kernel :(
 What does this mean ?? :

That you deleted options without reading what is required. Read the 
requirements for umass in the USB section and reactivate the required 
pieces.

Kent


 linking kernel
 umass.o: In function `umass_cam_attach_sim':
 umass.o(.text+0x17c7): undefined reference to `cam_simq_alloc'
 umass.o(.text+0x1818): undefined reference to `cam_sim_alloc'
 umass.o(.text+0x1827): undefined reference to `cam_simq_free'
 umass.o(.text+0x1847): undefined reference to `xpt_bus_register'
 umass.o: In function `umass_cam_rescan_callback':
 umass.o(.text+0x1883): undefined reference to `xpt_free_path'
 umass.o: In function `umass_cam_rescan':
 umass.o(.text+0x18f5): undefined reference to `xpt_periph'
 umass.o(.text+0x1904): undefined reference to `xpt_create_path'
 umass.o(.text+0x1920): undefined reference to `xpt_setup_ccb'
 umass.o(.text+0x193d): undefined reference to `xpt_action'
 umass.o: In function `umass_cam_detach_sim':
 umass.o(.text+0x1a2c): undefined reference to `xpt_bus_deregister'
 umass.o(.text+0x1a48): undefined reference to `cam_sim_free'
 umass.o: In function `umass_cam_action':
 umass.o(.text+0x1ebd): undefined reference to `xpt_done'
 umass.o: In function `umass_cam_cb':
 umass.o(.text+0x202b): undefined reference to `xpt_done'
 umass.o: In function `umass_cam_sense_cb':
 umass.o(.text+0x2191): undefined reference to `xpt_done'
 umass.o: In function `umass_cam_quirk_cb':
 umass.o(.text+0x21bb): undefined reference to `xpt_done'
 *** Error code 1

 Thanks for your help.
 mess-mate

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

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

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


Re: kernel-building error

2003-08-09 Thread Kris Kennaway
On Fri, Aug 08, 2003 at 09:47:49PM +0200, mess-mate wrote:

 |That you deleted options without reading what is required. Read the 
 |requirements for umass in the USB section and reactivate the required 
 |pieces.
 |
 |Kent

 Thanks for your help.
 Problem semi-solved. Disabled 'umass' in the kernel and all 
 goes well.
 I don't know whar the requirements are for 'umass', what's 
 this beast ??

As Kent said, read the comments next to the umass entry.

Kris

pgp0.pgp
Description: PGP signature


kernel-building error

2003-08-08 Thread mess-mate
Hi,
An error occurs when building my kernel :(
What does this mean ?? :

linking kernel
umass.o: In function `umass_cam_attach_sim':
umass.o(.text+0x17c7): undefined reference to `cam_simq_alloc'
umass.o(.text+0x1818): undefined reference to `cam_sim_alloc'
umass.o(.text+0x1827): undefined reference to `cam_simq_free'
umass.o(.text+0x1847): undefined reference to `xpt_bus_register'
umass.o: In function `umass_cam_rescan_callback':
umass.o(.text+0x1883): undefined reference to `xpt_free_path'
umass.o: In function `umass_cam_rescan':
umass.o(.text+0x18f5): undefined reference to `xpt_periph'
umass.o(.text+0x1904): undefined reference to `xpt_create_path'
umass.o(.text+0x1920): undefined reference to `xpt_setup_ccb'
umass.o(.text+0x193d): undefined reference to `xpt_action'
umass.o: In function `umass_cam_detach_sim':
umass.o(.text+0x1a2c): undefined reference to `xpt_bus_deregister'
umass.o(.text+0x1a48): undefined reference to `cam_sim_free'
umass.o: In function `umass_cam_action':
umass.o(.text+0x1ebd): undefined reference to `xpt_done'
umass.o: In function `umass_cam_cb':
umass.o(.text+0x202b): undefined reference to `xpt_done'
umass.o: In function `umass_cam_sense_cb':
umass.o(.text+0x2191): undefined reference to `xpt_done'
umass.o: In function `umass_cam_quirk_cb':
umass.o(.text+0x21bb): undefined reference to `xpt_done'
*** Error code 1

Thanks for your help.
mess-mate

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


Re: kernel-building error

2003-08-08 Thread Mark Woodson
On Friday 08 August 2003 12:47 pm, mess-mate wrote:
 | umass.o: In function `umass_cam_quirk_cb':
 | umass.o(.text+0x21bb): undefined reference to `xpt_done'
 | *** Error code 1
 |
 | Thanks for your help.
 | mess-mate

 Thanks for your help.
 Problem semi-solved. Disabled 'umass' in the kernel and all
 goes well.
 I don't know whar the requirements are for 'umass', what's
 this beast ??

umass is USB mass storage (a usb hard drive).

The requirements for umass are:  scbus and da (scsi bus and scsi direct 
access) as the line states in the kernel config file
device  umass   # Disks/Mass storage - Requires scbus and da

The requirements for a device or option are listed in the config file.  
generally.

-Mark

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