Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Jun 1998 22:34:48 -0500
From:      josh <josh@lucratec.com>
To:        freebsd-questions@FreeBSD.ORG
Subject:   kernel configuration
Message-ID:  <35888AD8.571030FC@lucratec.com>

next in thread | raw e-mail | index | archive | help
When I run make all on in my ../../compile/kernelname directory, I get
this message


loading kernel
cd.o: Undefined symbol `_scsi_device_register' referenced from text
segment
cd.o: Undefined symbol `_scsi_open' referenced from text segment




Here is my kernel config file


machine         "i386"
cpu             "I686_CPU"
ident           GENERIC
maxusers        145

options         MATH_EMULATE            #Support for x87 emulation
options         INET                    #InterNETworking
options         FFS                     #Berkeley Fast Filesystem
options         NFS                     #Network Filesystem
options         "CD9660"                #ISO 9660 Filesystem
options         PROCFS                  #Process filesystem
options         "COMPAT_43"             #Compatible with BSD 4.3 [KEEP
THIS!]
options         BOUNCE_BUFFERS          #include support for DMA bounce
buffers
options         UCONSOLE                #Allow users to grab the console

options         FAILSAFE                #Be conservative
options         USERCONFIG              #boot -c editor
options         VISUAL_USERCONFIG       #visual boot -c editor

config          kernel  root on wd0

controller      isa0
controller      eisa0
controller      pci0

controller      fdc0    at isa? port "IO_FD1" bio irq 6 drq 2 vector
fdintr
disk            fd0     at fdc0 drive 0

controller      wdc0    at isa? port "IO_WD1" bio irq 14 vector wdintr
disk            wd0     at wdc0 drive 0

options         ATAPI           #Enable ATAPI support for IDE bus
options         ATAPI_STATIC    #Don't do it as an LKM
device          wcd0            #IDE CD-ROM
device          wfd0            #IDE floppy (LS-120)

controller      ahc0
controller      aha0    at isa? port "IO_AHA0" bio irq ? drq 5 vector
ahaintr

device          sd0
device          cd0     #Only need one of these, the code dynamically
grows

# syscons is the default console driver, resembling an SCO console
device          sc0     at isa? port "IO_KBD" tty irq 1 vector scintr

# Mandatory, don't remove
device          npx0    at isa? port "IO_NPX" flags 0x1 irq 13 vector
npxintr
device          sio0    at isa? port "IO_COM1" tty irq 4 vector siointr
device          sio1    at isa? port "IO_COM2" tty irq 3 vector siointr

device          lpt0    at isa? port? tty irq 7 vector lptintr
device fxp0
device vx0


pseudo-device   loop
pseudo-device   ether
pseudo-device   log
pseudo-device   sl      1
pseudo-device   ppp     1
pseudo-device   vn      1
pseudo-device   tun     1
pseudo-device   pty     16
pseudo-device   gzip            # Exec gzipped a.out's
pseudo-device   ccd     4

# KTRACE enables the system-call tracing facility ktrace(2).
# This adds 4 KB bloat to your kernel, and slightly increases
# the costs of each syscall.
options         KTRACE          #kernel tracing

# This provides support for System V shared memory.
#



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?35888AD8.571030FC>