1996-06-14 10:04:54 +00:00
|
|
|
#
|
2000-01-28 01:07:48 +00:00
|
|
|
# GENERIC -- Generic kernel configuration file for FreeBSD/pc98
|
1996-06-14 10:04:54 +00:00
|
|
|
#
|
1999-08-28 16:49:58 +00:00
|
|
|
# For more information on this file, please read the handbook section on
|
|
|
|
# Kernel Configuration Files:
|
1996-06-14 10:04:54 +00:00
|
|
|
#
|
2000-05-19 16:36:42 +00:00
|
|
|
# http://www.FreeBSD.org/handbook/kernelconfig-config.html
|
1999-08-28 16:49:58 +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-19 16:36:42 +00:00
|
|
|
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
|
1999-08-28 16:49:58 +00:00
|
|
|
# latest information.
|
|
|
|
#
|
|
|
|
# An exhaustive list of options and more detailed explanations of the
|
2000-08-08 11:57:09 +00:00
|
|
|
# device lines is also present in the ./NOTES configuration file. If you are
|
|
|
|
# in doubt as to the purpose or necessity of a line, check first in NOTES.
|
1996-08-31 15:07:42 +00:00
|
|
|
#
|
1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1996-06-14 10:04:54 +00:00
|
|
|
|
1999-04-25 04:03:22 +00:00
|
|
|
machine pc98
|
|
|
|
cpu I386_CPU
|
|
|
|
cpu I486_CPU
|
|
|
|
cpu I586_CPU
|
|
|
|
cpu I686_CPU
|
2000-05-05 08:03:31 +00:00
|
|
|
ident GENERIC
|
1998-09-05 02:20:52 +00:00
|
|
|
maxusers 32
|
1996-06-14 10:04:54 +00:00
|
|
|
|
2000-08-24 18:56:54 +00:00
|
|
|
#To statically compile in device wiring instead of /boot/device.hints
|
|
|
|
#hints "GENERIC.hints"
|
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
|
|
|
|
1999-04-25 04:03:22 +00:00
|
|
|
#makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
1999-04-18 14:42:20 +00:00
|
|
|
|
1999-08-28 16:49:58 +00:00
|
|
|
options PC98 #PC98
|
|
|
|
options MATH_EMULATE #Support for x87 emulation
|
|
|
|
options INET #InterNETworking
|
2000-03-01 08:52:28 +00:00
|
|
|
options INET6 #IPv6 communications protocols
|
1999-08-28 16:49:58 +00:00
|
|
|
options FFS #Berkeley Fast Filesystem
|
|
|
|
options FFS_ROOT #FFS usable as root device [keep this!]
|
2000-06-28 03:15:27 +00:00
|
|
|
options SOFTUPDATES #Enable FFS soft updates support
|
1999-08-28 16:49:58 +00:00
|
|
|
options MFS #Memory Filesystem
|
2000-11-05 14:31:19 +00:00
|
|
|
#options DEVFS #Device Filesystem
|
1999-12-20 10:53:49 +00:00
|
|
|
options MD_ROOT #MD is a potential root device
|
1999-08-28 16:49:58 +00:00
|
|
|
options NFS #Network Filesystem
|
2000-01-24 14:02:34 +00:00
|
|
|
options NFS_ROOT #NFS usable as root device, NFS required
|
1999-08-28 16:49:58 +00:00
|
|
|
options MSDOSFS #MSDOS Filesystem
|
|
|
|
options CD9660 #ISO 9660 Filesystem
|
2000-01-24 14:02:34 +00:00
|
|
|
options CD9660_ROOT #CD-ROM usable as root, CD9660 required
|
1999-08-28 16:49:58 +00:00
|
|
|
options PROCFS #Process filesystem
|
|
|
|
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
2000-01-28 01:07:48 +00:00
|
|
|
options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI
|
1999-08-28 16:49:58 +00:00
|
|
|
options EPSON_BOUNCEDMA #use bounce buufer for 15-16M
|
|
|
|
#options EPSON_MEMWIN #EPSON memory window support
|
|
|
|
options UCONSOLE #Allow users to grab the console
|
|
|
|
#options LINE30
|
|
|
|
options USERCONFIG #boot -c editor
|
|
|
|
options VISUAL_USERCONFIG #visual boot -c editor
|
2000-01-24 14:02:34 +00:00
|
|
|
options KTRACE #ktrace(1) support
|
1999-11-03 10:08:15 +00:00
|
|
|
options SYSVSHM #SYSV-style shared memory
|
|
|
|
options SYSVMSG #SYSV-style message queues
|
2000-01-20 12:37:06 +00:00
|
|
|
options SYSVSEM #SYSV-style semaphores
|
2000-04-23 09:04:42 +00:00
|
|
|
options P1003_1B #Posix P1003_1B real-time extensions
|
2000-01-20 08:34:40 +00:00
|
|
|
options _KPOSIX_PRIORITY_SCHEDULING
|
2000-05-19 16:36:42 +00:00
|
|
|
#options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
1999-08-28 16:49:58 +00:00
|
|
|
|
1998-12-30 07:46:23 +00:00
|
|
|
# To make an SMP kernel, the next two are needed
|
1999-08-28 16:49:58 +00:00
|
|
|
#options SMP # Symmetric MultiProcessor Kernel
|
|
|
|
#options APIC_IO # Symmetric (APIC) I/O
|
1998-12-30 07:46:23 +00:00
|
|
|
# Optionally these may need tweaked, (defaults shown):
|
|
|
|
|
2000-01-23 12:20:09 +00:00
|
|
|
device isa
|
|
|
|
device pci
|
2000-03-19 14:42:52 +00:00
|
|
|
options COMPAT_OLDISA # Old ISA driver shims
|
1996-06-14 10:04:54 +00:00
|
|
|
|
1999-08-28 16:49:58 +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
|
1996-06-14 10:04:54 +00:00
|
|
|
|
1999-08-28 16:49:58 +00:00
|
|
|
# IDE controller and disks
|
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 wdc
|
1996-06-14 10:04:54 +00:00
|
|
|
|
2000-01-24 08:52:29 +00:00
|
|
|
# ATAPI devices on wdc
|
2000-01-23 12:20:09 +00:00
|
|
|
device wcd #IDE CD-ROM
|
|
|
|
#device wfd #IDE Floppy (e.g. LS-120)
|
|
|
|
#device wst #IDE Tape (e.g. Travan)
|
1996-06-14 10:04:54 +00:00
|
|
|
|
1999-08-28 16:49:58 +00:00
|
|
|
# SCSI Controllers
|
2000-01-23 12:20:09 +00:00
|
|
|
device adv
|
|
|
|
device ahc # AHA2940 and onboard AIC7xxx devices
|
|
|
|
device amd # AMD 53C974 (Teckram DC-390(T))
|
|
|
|
device isp # Qlogic family
|
2000-08-08 11:57:09 +00:00
|
|
|
#device ncr # NCR/Symbios Logic
|
|
|
|
device sym # NCR/Symbios Logic (newer chipsets + those of `ncr')
|
1996-10-09 21:47:16 +00:00
|
|
|
|
1996-12-04 04:32:52 +00:00
|
|
|
# WD33C93 SCSI card (55/92 like board)
|
2000-06-17 14:46:20 +00:00
|
|
|
options BS_TARG_SAFEMODE
|
2000-06-17 03:58:06 +00:00
|
|
|
device bs 1
|
1996-12-04 04:32:52 +00:00
|
|
|
|
2000-03-29 14:32:34 +00:00
|
|
|
# PC-9801-100
|
2000-06-17 14:46:20 +00:00
|
|
|
device aic
|
2000-03-29 14:32:34 +00:00
|
|
|
|
2000-11-05 14:31:19 +00:00
|
|
|
device ncv # NCR 53C500
|
|
|
|
device nsp # Workbit Ninja SCSI-3
|
|
|
|
device stg # TMC 18C30/18C50
|
|
|
|
|
1999-08-28 16:49:58 +00:00
|
|
|
# SCSI peripherals
|
2000-01-23 12:20:09 +00:00
|
|
|
device scbus # SCSI bus (required)
|
|
|
|
device da # Direct Access (disks)
|
|
|
|
device sa # Sequential Access (tape etc)
|
|
|
|
device cd # CD
|
|
|
|
device pass # Passthrough device (direct SCSI access)
|
1996-06-14 10:04:54 +00:00
|
|
|
|
1999-12-02 14:00:28 +00:00
|
|
|
# RAID controllers
|
2000-06-28 03:25:47 +00:00
|
|
|
#device ida # Compaq Smart RAID
|
|
|
|
#device amr # AMI MegaRAID
|
|
|
|
#device mlx # Mylex DAC960 family
|
1999-12-02 14:00:28 +00:00
|
|
|
|
1999-01-18 08:38:08 +00:00
|
|
|
# keyboard driver
|
2000-06-17 03:58:06 +00:00
|
|
|
device pckbd 1
|
1999-01-18 08:38:08 +00:00
|
|
|
|
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 gdc
|
1999-01-18 08:38:08 +00:00
|
|
|
|
1999-04-18 14:42:20 +00:00
|
|
|
# splash screen/screen saver
|
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 splash
|
1999-01-18 08:38:08 +00:00
|
|
|
|
1999-11-13 14:04:49 +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
|
1996-06-14 10:04:54 +00:00
|
|
|
|
1999-08-28 16:49:58 +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
|
1996-06-14 10:04:54 +00:00
|
|
|
|
2000-08-08 11:57:09 +00:00
|
|
|
# Power management support (see NOTES for more options)
|
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 apm
|
1997-03-31 08:27:05 +00:00
|
|
|
|
1996-06-14 10:04:54 +00:00
|
|
|
# PCCARD (PCMCIA) support
|
2000-08-26 07:38:43 +00:00
|
|
|
device card
|
|
|
|
device pcic
|
1996-06-14 10:04:54 +00:00
|
|
|
|
1999-08-28 16:49:58 +00:00
|
|
|
# Serial (COM) ports
|
1999-11-13 14:04:49 +00:00
|
|
|
options COM_MULTIPORT
|
2000-06-17 14:46:20 +00:00
|
|
|
#options COM_ESP # ESP98
|
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 sio
|
1996-06-14 10:04:54 +00:00
|
|
|
|
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 mse
|
1999-08-28 16:49:58 +00:00
|
|
|
|
1999-06-18 14:48:28 +00:00
|
|
|
# NEW 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-28 01:07:48 +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-18 14:48:28 +00:00
|
|
|
# OLD Parallel port
|
|
|
|
# Please stay olpt driver after ppc driver
|
2000-06-17 03:58:06 +00:00
|
|
|
device olpt 1
|
1996-06-14 10:04:54 +00:00
|
|
|
|
1999-08-28 15:04:27 +00:00
|
|
|
|
1999-08-28 16:49:58 +00:00
|
|
|
# PCI Ethernet NICs.
|
2000-01-23 12:20:09 +00:00
|
|
|
device de # DEC/Intel DC21x4x (``Tulip'')
|
|
|
|
device fxp # Intel EtherExpress PRO/100B (82557, 82558)
|
|
|
|
device vx # 3Com 3c590, 3c595 (``Vortex'')
|
|
|
|
device wx # Intel Gigabit Ethernet Card (``Wiseman'')
|
1999-09-13 08:55:15 +00:00
|
|
|
|
|
|
|
# PCI Ethernet NICs that use the common MII bus controller code.
|
2000-11-05 14:31:19 +00:00
|
|
|
# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
|
2000-01-23 12:20:09 +00:00
|
|
|
device miibus # MII bus support
|
|
|
|
device dc # DEC/Intel 21143 and various workalikes
|
2000-09-22 12:53:49 +00:00
|
|
|
device pcn # AMD Am79C79x PCI 10/100 NICs
|
2000-01-23 12:20:09 +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-09-13 10:10:34 +00:00
|
|
|
device tx # SMC 9432TX (83c170 ``EPIC'')
|
2000-01-23 12:20:09 +00:00
|
|
|
device vr # VIA Rhine, Rhine II
|
|
|
|
device wb # Winbond W89C840F
|
|
|
|
device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
|
1996-06-14 10:04:54 +00:00
|
|
|
|
1999-11-09 12:20:34 +00:00
|
|
|
# ISA Ethernet NICs.
|
2000-06-17 14:46:20 +00:00
|
|
|
|
1996-09-07 02:14:47 +00:00
|
|
|
# DP8390 NIC
|
2000-08-17 12:15:45 +00:00
|
|
|
device ed
|
2000-06-17 14:46:20 +00:00
|
|
|
|
2000-01-21 13:22:07 +00:00
|
|
|
# MB86960A NIC
|
2000-01-03 07:12:56 +00:00
|
|
|
options FE_8BIT_SUPPORT # LAC-98 support
|
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 fe
|
2000-01-03 07:12:56 +00:00
|
|
|
|
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 ep
|
2000-12-16 03:31:44 +00:00
|
|
|
#device lnc
|
2000-05-19 16:36:42 +00:00
|
|
|
device sn
|
2000-10-02 14:27:20 +00:00
|
|
|
device snc
|
2000-01-03 07:12:56 +00:00
|
|
|
|
1999-12-24 11:12:43 +00:00
|
|
|
# WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really
|
1999-12-20 10:53:49 +00:00
|
|
|
# exists only as a PCMCIA device, so there is no ISA attatement needed
|
|
|
|
# and resources will always be dynamically assigned by the pccard code.
|
2000-01-28 01:07:48 +00:00
|
|
|
device wi
|
2000-01-20 08:34:40 +00:00
|
|
|
# Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will
|
|
|
|
# work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP
|
|
|
|
# mode (the factory default). If you set the switches on your ISA
|
|
|
|
# card for a manually chosen I/O address and IRQ, you must specify
|
|
|
|
# those paremeters here.
|
2000-01-28 01:07:48 +00:00
|
|
|
device an
|
2000-05-19 16:36:42 +00:00
|
|
|
# BayStack 660 and others
|
|
|
|
device awi
|
|
|
|
# Xircom pccard ethernet
|
2000-08-26 07:38:43 +00:00
|
|
|
device xe
|
1999-11-13 14:04:49 +00:00
|
|
|
|
2000-12-10 10:02:32 +00:00
|
|
|
#device joy
|
2000-01-21 13:22:07 +00:00
|
|
|
|
2000-05-19 15:41:52 +00:00
|
|
|
# Windows Sound System
|
2000-12-10 10:02:32 +00:00
|
|
|
#device pcm
|
2000-05-19 15:41:52 +00:00
|
|
|
#
|
|
|
|
# Sound Blaster 16 (This device need the bridge driver.)
|
2000-12-10 10:02:32 +00:00
|
|
|
#device pcm
|
|
|
|
#device sbc
|
2000-05-19 15:41:52 +00:00
|
|
|
|
1999-08-28 16:49:58 +00:00
|
|
|
# Pseudo devices - the number indicates how many units to allocated.
|
2000-09-13 10:11:30 +00:00
|
|
|
device random # Entropy device
|
2000-10-27 06:06:04 +00:00
|
|
|
options NOBLOCKRANDOM # avoid any blocking on device random
|
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
|
2000-07-04 12:31:46 +00:00
|
|
|
device sl # Kernel SLIP
|
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 ppp 1 # Kernel PPP
|
|
|
|
device tun # Packet tunnel.
|
|
|
|
device pty # Pseudo-ttys (telnet etc)
|
|
|
|
device md # Memory "disks"
|
|
|
|
device gif 4 # IPv6 and IPv4 tunneling
|
|
|
|
device faith 1 # IPv6-to-IPv4 relaying (translation)
|
|
|
|
|
|
|
|
# The `bpf' device enables the Berkeley Packet Filter.
|
1999-08-08 11:09:28 +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
|
1999-08-29 09:12:54 +00:00
|
|
|
|
2000-06-17 14:46:20 +00:00
|
|
|
#device compat_atdisk # IBM-PC HDD support
|
2000-01-03 07:12:56 +00:00
|
|
|
|
|
|
|
# USB support
|
2000-01-23 12:20:09 +00:00
|
|
|
#device uhci # UHCI PCI->USB interface
|
|
|
|
#device ohci # OHCI PCI->USB interface
|
|
|
|
#device usb # USB Bus (required)
|
2000-05-19 16:36:42 +00:00
|
|
|
#device udbp # USB Double Bulk Pipe devices
|
2000-01-23 12:20:09 +00:00
|
|
|
#device ugen # Generic
|
|
|
|
#device uhid # "Human Interface Devices"
|
|
|
|
#device ukbd # Keyboard
|
|
|
|
#device ulpt # Printer
|
2000-02-03 10:46:28 +00:00
|
|
|
#device umass # Disks/Mass storage - Requires scbus and da
|
2000-01-23 12:20:09 +00:00
|
|
|
#device ums # Mouse
|
2000-05-19 16:36:42 +00:00
|
|
|
#device urio # Diamond Rio 500 MP3 player
|
2000-11-05 14:31:19 +00:00
|
|
|
#device uscanner # Scanners
|
2000-03-01 08:52:28 +00:00
|
|
|
# USB Ethernet, requires mii
|
2000-01-23 12:20:09 +00:00
|
|
|
#device aue # ADMtek USB ethernet
|
|
|
|
#device cue # CATC USB ethernet
|
|
|
|
#device kue # Kawasaki LSI USB ethernet
|