1994-10-17 21:10:20 +00:00
|
|
|
#
|
2000-01-21 20:19:18 +00:00
|
|
|
# GENERIC -- Generic kernel configuration file for FreeBSD/i386
|
1994-10-17 21:10:20 +00:00
|
|
|
#
|
1999-06-20 03:36:46 +00:00
|
|
|
# For more information on this file, please read the handbook section on
|
|
|
|
# Kernel Configuration Files:
|
1994-10-17 21:10:20 +00:00
|
|
|
#
|
2002-08-01 17:21:18 +00:00
|
|
|
# http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
|
1999-06-20 03:36:46 +00:00
|
|
|
#
|
|
|
|
# The handbook is also available locally in /usr/share/doc/handbook
|
|
|
|
# if you've installed the doc distribution, otherwise always see the
|
2000-05-13 11:21:19 +00:00
|
|
|
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
|
1999-06-20 03:36:46 +00:00
|
|
|
# latest information.
|
|
|
|
#
|
|
|
|
# An exhaustive list of options and more detailed explanations of the
|
2002-07-16 18:20:17 +00:00
|
|
|
# device lines is also present in the ../../conf/NOTES and NOTES files.
|
|
|
|
# If you are in doubt as to the purpose or necessity of a line, check first
|
|
|
|
# in NOTES.
|
1996-08-27 16:25:53 +00:00
|
|
|
#
|
1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1994-10-17 21:10:20 +00:00
|
|
|
|
1999-04-24 21:45:44 +00:00
|
|
|
machine i386
|
|
|
|
cpu I486_CPU
|
|
|
|
cpu I586_CPU
|
|
|
|
cpu I686_CPU
|
1994-10-17 21:10:20 +00:00
|
|
|
ident GENERIC
|
2001-12-09 01:57:09 +00:00
|
|
|
maxusers 0
|
1994-10-17 21:10:20 +00:00
|
|
|
|
2000-08-24 18:56:54 +00:00
|
|
|
#To statically compile in device wiring instead of /boot/device.hints
|
2001-08-25 07:42:27 +00:00
|
|
|
#hints "GENERIC.hints" #Default places to look for devices.
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
|
2001-04-15 19:37:28 +00:00
|
|
|
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
1999-04-13 20:59:36 +00:00
|
|
|
|
1999-06-29 18:55:53 +00:00
|
|
|
options INET #InterNETworking
|
2000-02-26 22:09:31 +00:00
|
|
|
options INET6 #IPv6 communications protocols
|
1999-06-29 18:55:53 +00:00
|
|
|
options FFS #Berkeley Fast Filesystem
|
2000-06-22 06:01:02 +00:00
|
|
|
options SOFTUPDATES #Enable FFS soft updates support
|
2001-12-14 16:27:11 +00:00
|
|
|
options UFS_DIRHASH #Improve performance on big directories
|
1999-12-19 17:12:19 +00:00
|
|
|
options MD_ROOT #MD is a potential root device
|
2001-09-18 23:32:09 +00:00
|
|
|
options NFSCLIENT #Network Filesystem Client
|
|
|
|
options NFSSERVER #Network Filesystem Server
|
2001-09-22 19:02:18 +00:00
|
|
|
options NFS_ROOT #NFS usable as root device, requires NFSCLIENT
|
1999-06-29 18:55:53 +00:00
|
|
|
options MSDOSFS #MSDOS Filesystem
|
|
|
|
options CD9660 #ISO 9660 Filesystem
|
2001-12-04 11:12:20 +00:00
|
|
|
options PROCFS #Process filesystem (requires PSEUDOFS)
|
|
|
|
options PSEUDOFS #Pseudo-filesystem framework
|
1999-06-29 18:55:53 +00:00
|
|
|
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
2002-07-12 06:38:34 +00:00
|
|
|
options COMPAT_FREEBSD4 #Compatible with FreeBSD4
|
2000-01-21 20:19:18 +00:00
|
|
|
options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI
|
2000-01-24 05:38:55 +00:00
|
|
|
options KTRACE #ktrace(1) support
|
1999-10-15 07:07:43 +00:00
|
|
|
options SYSVSHM #SYSV-style shared memory
|
|
|
|
options SYSVMSG #SYSV-style message queues
|
|
|
|
options SYSVSEM #SYSV-style semaphores
|
2000-04-15 18:46:15 +00:00
|
|
|
options P1003_1B #Posix P1003_1B real-time extensions
|
2000-01-18 07:52:12 +00:00
|
|
|
options _KPOSIX_PRIORITY_SCHEDULING
|
2000-05-12 03:05:35 +00:00
|
|
|
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
1994-10-17 21:10:20 +00:00
|
|
|
|
2001-04-15 19:37:28 +00:00
|
|
|
# Debugging for use in -current
|
2001-09-24 03:23:48 +00:00
|
|
|
options DDB #Enable the kernel debugger
|
|
|
|
options INVARIANTS #Enable calls of extra sanity checking
|
|
|
|
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
2002-05-03 17:59:25 +00:00
|
|
|
options WITNESS #Enable checks to detect deadlocks and cycles
|
2002-03-17 23:48:24 +00:00
|
|
|
options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
2001-04-15 19:37:28 +00:00
|
|
|
|
1998-12-27 13:12:59 +00:00
|
|
|
# To make an SMP kernel, the next two are needed
|
1999-06-29 18:55:53 +00:00
|
|
|
#options SMP # Symmetric MultiProcessor Kernel
|
|
|
|
#options APIC_IO # Symmetric (APIC) I/O
|
1998-12-27 13:12:59 +00:00
|
|
|
|
2000-01-23 12:18:53 +00:00
|
|
|
device isa
|
|
|
|
device eisa
|
2002-07-23 06:38:47 +00:00
|
|
|
device pci
|
1994-10-17 21:10:20 +00:00
|
|
|
|
1999-06-29 18:55:53 +00:00
|
|
|
# Floppy drives
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
device fdc
|
1994-10-17 21:10:20 +00:00
|
|
|
|
1999-12-08 09:19:37 +00:00
|
|
|
# ATA and ATAPI devices
|
2000-01-23 12:18:53 +00:00
|
|
|
device ata
|
|
|
|
device atadisk # ATA disk drives
|
|
|
|
device atapicd # ATAPI CDROM drives
|
|
|
|
device atapifd # ATAPI floppy drives
|
|
|
|
device atapist # ATAPI tape drives
|
1999-12-08 09:19:37 +00:00
|
|
|
options ATA_STATIC_ID #Static device numbering
|
1999-11-27 23:25:17 +00:00
|
|
|
|
1999-06-29 18:55:53 +00:00
|
|
|
# SCSI Controllers
|
2000-01-23 12:18:53 +00:00
|
|
|
device ahb # EISA AHA1742 family
|
|
|
|
device ahc # AHA2940 and onboard AIC7xxx devices
|
2002-06-06 16:35:58 +00:00
|
|
|
device ahd # AHA39320 and onboard AIC79xx devices
|
2001-03-07 04:58:38 +00:00
|
|
|
device amd # AMD 53C974 (Tekram DC-390(T))
|
2000-01-23 12:18:53 +00:00
|
|
|
device isp # Qlogic family
|
2000-07-29 01:31:09 +00:00
|
|
|
#device ncr # NCR/Symbios Logic
|
|
|
|
device sym # NCR/Symbios Logic (newer chipsets + those of `ncr')
|
2000-01-08 15:59:12 +00:00
|
|
|
|
2001-03-07 04:58:38 +00:00
|
|
|
device adv # Advansys SCSI adapters
|
|
|
|
device adw # Advansys wide SCSI adapters
|
|
|
|
device aha # Adaptec 154x SCSI adapters
|
|
|
|
device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
|
|
|
|
device bt # Buslogic/Mylex MultiMaster SCSI adapters
|
1995-01-14 02:39:22 +00:00
|
|
|
|
2000-10-23 12:55:51 +00:00
|
|
|
device ncv # NCR 53C500
|
|
|
|
device nsp # Workbit Ninja SCSI-3
|
|
|
|
device stg # TMC 18C30/18C50
|
|
|
|
|
2000-08-23 03:29:49 +00:00
|
|
|
# RAID controllers interfaced to the SCSI subsystem
|
2000-09-01 07:51:25 +00:00
|
|
|
device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID
|
2002-01-20 08:51:08 +00:00
|
|
|
device ciss # Compaq Smart RAID 5*
|
2000-09-01 07:51:25 +00:00
|
|
|
device dpt # DPT Smartcache III, IV - See NOTES for options!
|
2002-01-20 08:51:08 +00:00
|
|
|
device iir # Intel Integrated RAID
|
2000-08-23 03:29:49 +00:00
|
|
|
device mly # Mylex AcceleRAID/eXtremeRAID
|
|
|
|
|
1999-06-29 18:55:53 +00:00
|
|
|
# SCSI peripherals
|
2000-01-23 12:18:53 +00:00
|
|
|
device scbus # SCSI bus (required)
|
2001-10-16 22:22:58 +00:00
|
|
|
device ch # SCSI media changers
|
2000-01-23 12:18:53 +00:00
|
|
|
device da # Direct Access (disks)
|
|
|
|
device sa # Sequential Access (tape etc)
|
|
|
|
device cd # CD
|
|
|
|
device pass # Passthrough device (direct SCSI access)
|
2001-10-16 22:22:58 +00:00
|
|
|
device ses # SCSI Environmental Services (and SAF-TE)
|
1994-10-17 21:10:20 +00:00
|
|
|
|
2000-07-29 02:12:44 +00:00
|
|
|
# RAID controllers
|
2000-09-13 03:20:35 +00:00
|
|
|
device aac # Adaptec FSA RAID
|
2002-04-27 01:31:17 +00:00
|
|
|
device aacp # SCSI passthrough for aac (requires CAM)
|
2000-07-29 02:12:44 +00:00
|
|
|
device amr # AMI MegaRAID
|
2000-11-07 21:06:57 +00:00
|
|
|
device ida # Compaq Smart RAID
|
2000-07-29 02:12:44 +00:00
|
|
|
device mlx # Mylex DAC960 family
|
2000-10-12 01:46:43 +00:00
|
|
|
device twe # 3ware ATA RAID
|
2000-07-29 02:12:44 +00:00
|
|
|
|
1999-04-19 10:18:34 +00:00
|
|
|
# atkbdc0 controls both the keyboard and the PS/2 mouse
|
2002-07-16 18:20:17 +00:00
|
|
|
device atkbdc 1 # AT keyboard controller
|
|
|
|
device atkbd # AT keyboard
|
|
|
|
device psm # PS/2 mouse
|
1999-01-11 03:18:56 +00:00
|
|
|
|
2002-07-16 18:20:17 +00:00
|
|
|
device vga # VGA video card driver
|
1999-01-11 03:18:56 +00:00
|
|
|
|
2002-07-16 18:20:17 +00:00
|
|
|
device splash # Splash screen and screen saver support
|
1999-01-11 03:18:56 +00:00
|
|
|
|
1999-01-01 08:09:58 +00:00
|
|
|
# syscons is the default console driver, resembling an SCO console
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
device sc 1
|
1999-04-24 21:45:44 +00:00
|
|
|
|
2000-04-04 13:14:43 +00:00
|
|
|
# Enable this for the pcvt (VT220 compatible) console driver
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
#device vt
|
2000-02-16 04:27:04 +00:00
|
|
|
#options XSERVER # support for X server on a vt console
|
1999-06-29 18:55:53 +00:00
|
|
|
#options FAT_CURSOR # start with block cursor
|
1995-02-15 20:38:36 +00:00
|
|
|
|
2002-08-04 18:35:02 +00:00
|
|
|
device agp # support several AGP chipsets
|
|
|
|
|
1999-06-29 18:55:53 +00:00
|
|
|
# Floating point support - do not disable.
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
device npx
|
1994-10-17 21:10:20 +00:00
|
|
|
|
2000-07-25 08:25:48 +00:00
|
|
|
# Power management support (see NOTES for more options)
|
2002-07-08 11:56:44 +00:00
|
|
|
#device apm
|
2000-11-15 18:36:24 +00:00
|
|
|
# Add suspend/resume support for the i8254.
|
|
|
|
device pmtimer
|
1997-03-29 11:07:12 +00:00
|
|
|
|
1996-05-13 04:29:14 +00:00
|
|
|
# PCCARD (PCMCIA) support
|
2002-07-07 19:00:00 +00:00
|
|
|
# Pcmcia and cardbus bridge support
|
|
|
|
device pccbb # cardbus (yenta) bridge
|
|
|
|
#device pcic # ExCA ISA and PCI bridges
|
|
|
|
device pccard # PC Card (16-bit) bus
|
|
|
|
device cardbus # CardBus (32-bit) bus
|
1996-04-22 19:40:28 +00:00
|
|
|
|
1999-06-29 18:55:53 +00:00
|
|
|
# Serial (COM) ports
|
2000-11-07 21:20:52 +00:00
|
|
|
device sio # 8250, 16[45]50 based serial ports
|
1994-10-17 21:10:20 +00:00
|
|
|
|
1999-02-11 06:07:27 +00:00
|
|
|
# Parallel port
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
device ppc
|
2000-01-23 18:30:35 +00:00
|
|
|
device ppbus # Parallel port bus (required)
|
|
|
|
device lpt # Printer
|
|
|
|
device plip # TCP/IP over parallel
|
|
|
|
device ppi # Parallel port interface device
|
|
|
|
#device vpo # Requires scbus and da
|
1999-06-29 18:55:53 +00:00
|
|
|
|
1999-08-21 18:34:58 +00:00
|
|
|
|
1999-06-29 18:55:53 +00:00
|
|
|
# PCI Ethernet NICs.
|
2000-01-23 12:18:53 +00:00
|
|
|
device de # DEC/Intel DC21x4x (``Tulip'')
|
2002-05-29 18:42:26 +00:00
|
|
|
device em # Intel PRO/1000 adapter Gigabit Ethernet Card
|
2001-07-23 20:44:54 +00:00
|
|
|
device txp # 3Com 3cR990 (``Typhoon'')
|
2001-09-24 03:23:48 +00:00
|
|
|
device vx # 3Com 3c590, 3c595 (``Vortex'')
|
1999-09-09 18:30:58 +00:00
|
|
|
|
|
|
|
# PCI Ethernet NICs that use the common MII bus controller code.
|
2000-10-28 22:32:17 +00:00
|
|
|
# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
|
2000-01-23 12:18:53 +00:00
|
|
|
device miibus # MII bus support
|
|
|
|
device dc # DEC/Intel 21143 and various workalikes
|
2001-03-12 21:51:07 +00:00
|
|
|
device fxp # Intel EtherExpress PRO/100B (82557, 82558)
|
2001-07-13 13:34:08 +00:00
|
|
|
device pcn # AMD Am79C97x PCI 10/100 NICs
|
2000-01-23 12:18:53 +00:00
|
|
|
device rl # RealTek 8129/8139
|
|
|
|
device sf # Adaptec AIC-6915 (``Starfire'')
|
|
|
|
device sis # Silicon Integrated Systems SiS 900/SiS 7016
|
|
|
|
device ste # Sundance ST201 (D-Link DFE-550TX)
|
|
|
|
device tl # Texas Instruments ThunderLAN
|
2000-11-07 20:22:19 +00:00
|
|
|
device tx # SMC EtherPower II (83c170 ``EPIC'')
|
2000-01-23 12:18:53 +00:00
|
|
|
device vr # VIA Rhine, Rhine II
|
|
|
|
device wb # Winbond W89C840F
|
|
|
|
device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
|
1999-06-29 18:55:53 +00:00
|
|
|
|
2000-11-07 21:20:52 +00:00
|
|
|
# ISA Ethernet NICs. pccard nics included.
|
|
|
|
device cs # Crystal Semiconductor CS89x0 NIC
|
2001-03-03 08:31:37 +00:00
|
|
|
# 'device ed' requires 'device miibus'
|
2000-11-07 21:20:52 +00:00
|
|
|
device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards
|
|
|
|
device ex # Intel EtherExpress Pro/10 and Pro/10+
|
|
|
|
device ep # Etherlink III based cards
|
|
|
|
device fe # Fujitsu MB8696x based cards
|
2001-10-30 06:08:56 +00:00
|
|
|
device lnc # NE2100, NE32-VL Lance Ethernet cards
|
2000-11-07 21:20:52 +00:00
|
|
|
device sn # SMC's 9000 series of ethernet chips
|
|
|
|
device xe # Xircom pccard ethernet
|
2000-11-07 21:06:57 +00:00
|
|
|
|
2001-10-31 20:15:18 +00:00
|
|
|
# ISA devices that use the old ISA shims
|
2001-01-19 13:06:37 +00:00
|
|
|
#device le
|
1999-06-29 18:55:53 +00:00
|
|
|
|
2000-11-07 21:20:52 +00:00
|
|
|
# Wireless NIC cards
|
|
|
|
device an # Aironet 4500/4800 802.11 wireless NICs.
|
|
|
|
device awi # BayStack 660 and others
|
2002-08-07 05:40:34 +00:00
|
|
|
device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
|
2000-11-07 21:20:52 +00:00
|
|
|
#device wl # Older non 802.11 Wavelan wireless NIC.
|
|
|
|
|
2001-03-07 04:58:38 +00:00
|
|
|
# Pseudo devices - the number indicates how many units to allocate.
|
2000-09-12 13:21:40 +00:00
|
|
|
device random # Entropy device
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
device loop # Network loopback
|
|
|
|
device ether # Ethernet support
|
|
|
|
device sl # Kernel SLIP
|
2002-08-09 15:30:48 +00:00
|
|
|
device ppp # Kernel PPP
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
device tun # Packet tunnel.
|
|
|
|
device pty # Pseudo-ttys (telnet etc)
|
|
|
|
device md # Memory "disks"
|
2001-07-02 21:02:09 +00:00
|
|
|
device gif # IPv6 and IPv4 tunneling
|
2001-09-25 18:56:40 +00:00
|
|
|
device faith # IPv6-to-IPv4 relaying (translation)
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
|
|
|
|
# The `bpf' device enables the Berkeley Packet Filter.
|
1999-08-07 01:42:08 +00:00
|
|
|
# Be aware of the administrative consequences of enabling this!
|
Borrow phk's axe and apply the next stage of config(8)'s evolution.
Use Warner Losh's "hint" driver to decode ascii strings to fill the
resource table at boot time.
config(8) no longer generates an ioconf.c table - ie: the configuration
no longer has to be compiled into the kernel. You can reconfigure your
isa devices with the likes of this at loader(8) time:
set hint.ed.0.port=0x320
userconfig will be rewritten to use this style interface one day and will
move to /boot/userconfig.4th or something like that.
It is still possible to statically compile in a set of hints into a kernel
if you do not wish to use loader(8). See the "hints" directive in GENERIC
as an example.
All device wiring has been moved out of config(8). There is a set of
helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98)
that extract the 'at isa? port foo irq bar' from the old files and produces
a hints file. If you install this file as /boot/device.hints (and update
/boot/defaults/loader.conf - You can do a build/install in sys/boot) then
loader will load it automatically for you. You can also compile in the
hints directly with: hints "device.hints" as well.
There are a few things that I'm not too happy with yet. Under this scheme,
things like LINT would no longer be useful as "documentation" of settings.
I have renamed this file to 'NOTES' and stored the example hints strings
in it. However... this is not something that config(8) understands, so
there is a script that extracts the build-specific data from the
documentation file (NOTES) to produce a LINT that can be config'ed and
built. A stack of man4 pages will need updating. :-/
Also, since there is no longer a difference between 'device' and
'pseudo-device' I collapsed the two together, and the resulting 'device'
takes a 'number of units' for devices that still have it statically
allocated. eg: 'device fe 4' will compile the fe driver with NFE set
to 4. You can then set hints for 4 units (0 - 3). Also note that
'device fe0' will be interpreted as "zero units of 'fe'" which would be
bad, so there is a config warning for this. This is only needed for
old drivers that still have static limits on numbers of units.
All the statically limited drivers that I could find were marked.
Please exercise EXTREME CAUTION when transitioning!
Moral support by: phk, msmith, dfr, asmodai, imp, and others
2000-06-13 22:28:50 +00:00
|
|
|
device bpf # Berkeley packet filter
|
1998-11-26 23:13:13 +00:00
|
|
|
|
|
|
|
# USB support
|
2000-05-12 03:05:35 +00:00
|
|
|
device uhci # UHCI PCI->USB interface
|
|
|
|
device ohci # OHCI PCI->USB interface
|
|
|
|
device usb # USB Bus (required)
|
2000-05-01 22:48:23 +00:00
|
|
|
#device udbp # USB Double Bulk Pipe devices
|
2000-05-12 03:05:35 +00:00
|
|
|
device ugen # Generic
|
|
|
|
device uhid # "Human Interface Devices"
|
|
|
|
device ukbd # Keyboard
|
|
|
|
device ulpt # Printer
|
|
|
|
device umass # Disks/Mass storage - Requires scbus and da
|
|
|
|
device ums # Mouse
|
|
|
|
device urio # Diamond Rio 500 MP3 player
|
2000-10-25 10:34:38 +00:00
|
|
|
device uscanner # Scanners
|
2000-02-20 14:41:54 +00:00
|
|
|
# USB Ethernet, requires mii
|
2000-05-12 03:05:35 +00:00
|
|
|
device aue # ADMtek USB ethernet
|
|
|
|
device cue # CATC USB ethernet
|
|
|
|
device kue # Kawasaki LSI USB ethernet
|