I'm trying to compile a mini kernel (to fit on a backup flopy disk) for a
system with the 3ware escalade 6200 controller in it.

I trimmed down the kernel config file, aparently too much.

I don't know what i'm missing.

I've provided my config file and some of the error output.

Thanks in advance.

pb

machine         i386
cpu             I586_CPU
cpu             I686_CPU
ident           MINI
maxusers        5

options         INET                    #InterNETworking
options         FFS                     #Berkeley Fast Filesystem
options         FFS_ROOT                #FFS usable as root device [keep
this!]
options         CD9660                  #ISO 9660 Filesystem
options         UCONSOLE                #Allow users to grab the console
options         USERCONFIG              #boot -c editor

device          isa
device          pci

# Floppy drives
device          fdc0    at isa? port IO_FD1 irq 6 drq 2
device          fd0     at fdc0 drive 0

# ATA and ATAPI devices
device          ata0    at isa? port IO_WD1 irq 14
device          ata1    at isa? port IO_WD2 irq 15
device          ata
device          atadisk                 # ATA disk drives
device          atapicd                 # ATAPI CDROM drives

# RAID controllers
device          twe             # 3ware Escalade

# atkbdc0 controls both the keyboard and the PS/2 mouse
device          atkbdc0 at isa? port IO_KBD
device          atkbd0  at atkbdc? irq 1 flags 0x1
device          psm0    at atkbdc? irq 12

device          vga0    at isa?


# syscons is the default console driver, resembling an SCO console
device          sc0     at isa? flags 0x100

# Floating point support - do not disable.
device          npx0    at nexus? port IO_NPX irq 13

# PCI Ethernet NICs.
device          vx              # 3Com 3c590, 3c595 (``Vortex'')

# Pseudo devices - the number indicates how many units to allocated.
pseudo-device   loop            # Network loopback
pseudo-device   ether           # Ethernet support



cc -c -O -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes
-Wmissing-prototypes -Wp
ointer-arith -Winline -Wcast-qual  -fformat-extensions -ansi  -nostdinc
-I- -I. -I/usr/src/sys
-I/usr/src/sys/../include  -D_KERNEL -include opt_global.h -elf
-mpreferred-stack-boundary=2
/usr/src/sys/dev/twe/twe.c
In file included from /usr/src/sys/dev/twe/twe.c:37:
/usr/src/sys/dev/twe/twevar.h:243: warning: `struct bio' declared inside
parameter list
/usr/src/sys/dev/twe/twevar.h:243: warning: its scope is only this
definition or declaration, w
hich is probably not what you want.
/usr/src/sys/dev/twe/twevar.h: In function `twe_enqueue_bio':
/usr/src/sys/dev/twe/twevar.h:248: warning: passing arg 2 of
`bufq_insert_tail' from incompatib
le pointer type
/usr/src/sys/dev/twe/twevar.h: In function `twe_dequeue_bio':
/usr/src/sys/dev/twe/twevar.h:260: warning: assignment from incompatible
pointer type
/usr/src/sys/dev/twe/twevar.h:261: warning: passing arg 2 of `bufq_remove'
from incompatible po
inter type
/usr/src/sys/dev/twe/twe.c: In function `twe_startio':
/usr/src/sys/dev/twe/twe.c:347: warning: assignment from incompatible
pointer type
/usr/src/sys/dev/twe/twe.c:352: warning: passing arg 2 of
`twe_enqueue_bio' from incompatible p
ointer type
/usr/src/sys/dev/twe/twe.c: In function `twe_wait_status':
/usr/src/sys/dev/twe/twe.c:1134: warning: implicit declaration of function
`DELAY'
/usr/src/sys/dev/twe/twe.c: At top level:
/usr/src/sys/dev/twe/twe.c:720: warning: `twe_set_param_1' defined but not
used
/usr/src/sys/dev/twe/twe.c:726: warning: `twe_set_param_2' defined but not
used
/usr/src/sys/dev/twe/twe.c:732: warning: `twe_set_param_4' defined but not
used
/usr/src/sys/dev/twe/twe.c:99: warning: `twe_request_qlen' declared
`static' but never defined
cc -c -O -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes
-Wmissing-prototypes -Wp
ointer-arith -Winline -Wcast-qual  -fformat-extensions -ansi  -nostdinc
-I- -I. -I/usr/src/sys
-I/usr/src/sys/../include  -D_KERNEL -include opt_global.h -elf
-mpreferred-stack-boundary=2
/usr/src/sys/dev/twe/twe_freebsd.c
In file included from /usr/src/sys/dev/twe/twe_freebsd.c:44:
/usr/src/sys/dev/twe/twevar.h:243: warning: `struct bio' declared inside
parameter list
/usr/src/sys/dev/twe/twevar.h:243: warning: its scope is only this
definition or declaration, w
hich is probably not what you want.
/usr/src/sys/dev/twe/twevar.h: In function `twe_enqueue_bio':
/usr/src/sys/dev/twe/twevar.h:248: warning: passing arg 2 of
`bufq_insert_tail' from incompatib
le pointer type


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to