Deleted Added
full compact
GENERIC (134383) GENERIC (134542)
1#
2# GENERIC -- Generic kernel configuration file for FreeBSD/pc98
3#
4# For more information on this file, please read the handbook section on
5# Kernel Configuration Files:
6#
7# http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
8#
9# The handbook is also available locally in /usr/share/doc/handbook
10# if you've installed the doc distribution, otherwise always see the
11# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
12# latest information.
13#
14# An exhaustive list of options and more detailed explanations of the
15# device lines is also present in the ../../conf/NOTES and NOTES files.
16# If you are in doubt as to the purpose or necessity of a line, check first
17# in NOTES.
18#
1#
2# GENERIC -- Generic kernel configuration file for FreeBSD/pc98
3#
4# For more information on this file, please read the handbook section on
5# Kernel Configuration Files:
6#
7# http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
8#
9# The handbook is also available locally in /usr/share/doc/handbook
10# if you've installed the doc distribution, otherwise always see the
11# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
12# latest information.
13#
14# An exhaustive list of options and more detailed explanations of the
15# device lines is also present in the ../../conf/NOTES and NOTES files.
16# If you are in doubt as to the purpose or necessity of a line, check first
17# in NOTES.
18#
19# $FreeBSD: head/sys/pc98/conf/GENERIC 134383 2004-08-27 15:16:24Z andre $
19# $FreeBSD: head/sys/pc98/conf/GENERIC 134542 2004-08-30 23:03:58Z peter $
20
21machine pc98
22#cpu I386_CPU # Do not enable with other cpu types
23cpu I486_CPU
24cpu I586_CPU
25cpu I686_CPU
26ident GENERIC
27
28# To statically compile in device wiring instead of /boot/device.hints
29#hints "GENERIC.hints" # Default places to look for devices.
30
31makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
32
33options PC98 # PC98
34options SCHED_ULE # ULE scheduler
35options INET # InterNETworking
36options INET6 # IPv6 communications protocols
37options FFS # Berkeley Fast Filesystem
38options SOFTUPDATES # Enable FFS soft updates support
39options UFS_ACL # Support for access control lists
40options UFS_DIRHASH # Improve performance on big directories
41options MD_ROOT # MD is a potential root device
42options NFSCLIENT # Network Filesystem Client
43options NFSSERVER # Network Filesystem Server
44options NFS_ROOT # NFS usable as /, requires NFSCLIENT
45options MSDOSFS # MSDOS Filesystem
46options CD9660 # ISO 9660 Filesystem
47options PROCFS # Process filesystem (requires PSEUDOFS)
48options PSEUDOFS # Pseudo-filesystem framework
49options GEOM_GPT # GUID Partition Tables.
50options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
51options COMPAT_FREEBSD4 # Compatible with FreeBSD4
52options SCSI_DELAY=15000 # Delay (in ms) before probing SCSI
53options EPSON_BOUNCEDMA # use bounce buffer for 15-16M
54#options EPSON_MEMWIN # EPSON memory window support
55#options LINE30
56options KTRACE # ktrace(1) support
57options SYSVSHM # SYSV-style shared memory
58options SYSVMSG # SYSV-style message queues
59options SYSVSEM # SYSV-style semaphores
60options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
61options KBD_INSTALL_CDEV # install a CDEV entry in /dev
62
63# Debugging for use in -current
64options KDB # Enable kernel debugger support.
65options DDB # Support DDB.
66options GDB # Support remote GDB.
67options INVARIANTS # Enable calls of extra sanity checking
68options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
69options WITNESS # Enable checks to detect deadlocks and cycles
70options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
71
72# To make an SMP kernel, the next two are needed
73#options SMP # Symmetric MultiProcessor Kernel
74#device apic # I/O APIC
75
76device isa
77device pci
78#options COMPAT_OLDISA # Old ISA driver shims
79
80# Floppy drives
81device fdc
82
83# ATA and ATAPI devices
84device ata
85device atadisk # ATA disk drives
86device atapicd # ATAPI CDROM drives
87device atapifd # ATAPI floppy drives
88device atapist # ATAPI tape drives
89options ATA_STATIC_ID # Static device numbering
90
91# IDE controller and disks
20
21machine pc98
22#cpu I386_CPU # Do not enable with other cpu types
23cpu I486_CPU
24cpu I586_CPU
25cpu I686_CPU
26ident GENERIC
27
28# To statically compile in device wiring instead of /boot/device.hints
29#hints "GENERIC.hints" # Default places to look for devices.
30
31makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
32
33options PC98 # PC98
34options SCHED_ULE # ULE scheduler
35options INET # InterNETworking
36options INET6 # IPv6 communications protocols
37options FFS # Berkeley Fast Filesystem
38options SOFTUPDATES # Enable FFS soft updates support
39options UFS_ACL # Support for access control lists
40options UFS_DIRHASH # Improve performance on big directories
41options MD_ROOT # MD is a potential root device
42options NFSCLIENT # Network Filesystem Client
43options NFSSERVER # Network Filesystem Server
44options NFS_ROOT # NFS usable as /, requires NFSCLIENT
45options MSDOSFS # MSDOS Filesystem
46options CD9660 # ISO 9660 Filesystem
47options PROCFS # Process filesystem (requires PSEUDOFS)
48options PSEUDOFS # Pseudo-filesystem framework
49options GEOM_GPT # GUID Partition Tables.
50options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
51options COMPAT_FREEBSD4 # Compatible with FreeBSD4
52options SCSI_DELAY=15000 # Delay (in ms) before probing SCSI
53options EPSON_BOUNCEDMA # use bounce buffer for 15-16M
54#options EPSON_MEMWIN # EPSON memory window support
55#options LINE30
56options KTRACE # ktrace(1) support
57options SYSVSHM # SYSV-style shared memory
58options SYSVMSG # SYSV-style message queues
59options SYSVSEM # SYSV-style semaphores
60options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
61options KBD_INSTALL_CDEV # install a CDEV entry in /dev
62
63# Debugging for use in -current
64options KDB # Enable kernel debugger support.
65options DDB # Support DDB.
66options GDB # Support remote GDB.
67options INVARIANTS # Enable calls of extra sanity checking
68options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
69options WITNESS # Enable checks to detect deadlocks and cycles
70options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
71
72# To make an SMP kernel, the next two are needed
73#options SMP # Symmetric MultiProcessor Kernel
74#device apic # I/O APIC
75
76device isa
77device pci
78#options COMPAT_OLDISA # Old ISA driver shims
79
80# Floppy drives
81device fdc
82
83# ATA and ATAPI devices
84device ata
85device atadisk # ATA disk drives
86device atapicd # ATAPI CDROM drives
87device atapifd # ATAPI floppy drives
88device atapist # ATAPI tape drives
89options ATA_STATIC_ID # Static device numbering
90
91# IDE controller and disks
92#device wdc 1 # Needs COMPAT_OLDISA
92#device wdc # Needs COMPAT_OLDISA
93#options NWDC=1
93
94# ATAPI devices on wdc
94
95# ATAPI devices on wdc
95#device wcd 1 # IDE CD-ROM
96#device wcd # IDE CD-ROM
96
97# SCSI Controllers
98device adv # Advansys SCSI adapters
99device ahc # AHA2940 and onboard AIC7xxx devices
100device amd # AMD 53C974 (Tekram DC-390(T))
101device isp # Qlogic family
102#device ncr # NCR/Symbios Logic
103device sym # NCR/Symbios Logic (newer chipsets + those of `ncr')
104
105device aic # PC-9801-100
106device ct # host adapter using WD33C93[ABC] chip (C bus)
107
108device ncv # NCR 53C500
109device nsp # Workbit Ninja SCSI-3
110device stg # TMC 18C30/18C50
111
112# SCSI peripherals
113device scbus # SCSI bus (required for SCSI)
114device ch # SCSI media changers
115device da # Direct Access (disks)
116device sa # Sequential Access (tape etc)
117device cd # CD
118device pass # Passthrough device (direct SCSI access)
119device ses # SCSI Environmental Services (and SAF-TE)
120
121# keyboard driver
122device pckbd # PC98 keyboard
123
124device gdc # GDC screen
125
126device splash # Splash screen and screen saver support
127
128# syscons is the default console driver, resembling an SCO console
129device sc
130
131#device agp # support several AGP chipsets
132
133# Floating point support - do not disable.
134device npx
135
136# Power management support (see NOTES for more options)
137#device apm
138#device pmc
139#device canbus
140#device canbepm
141# Add suspend/resume support for the i8254.
142#device pmtimer
143
144# Audio support
145#device sound # Generic sound driver
146#device snd_mss # Microsoft Sound System
147#device "snd_sb16" # Sound Blaster 16
148#device snd_sbc # Sound Blaster
149
150# PCMCIA support
151device card # pccard bus
152device pcic # PCMCIA bridge
153
154# Serial (COM) ports
155options COM_MULTIPORT
156#options COM_ESP # ESP98
157device sio # 8250, 16[45]50, 8251 based serial ports
158
159device mse
160#device joy
161
162# NEW Parallel port
163device ppc
164device ppbus # Parallel port bus (required)
165device lpt # Printer
166device plip # TCP/IP over parallel
167device ppi # Parallel port interface device
168#device vpo # Requires scbus and da
169# OLD Parallel port
170# Please stay olpt driver after ppc driver
171#device olpt
172
173# PCI Ethernet NICs.
174device de # DEC/Intel DC21x4x (``Tulip'')
175device em # Intel PRO/1000 adapter Gigabit Ethernet Card
176device txp # 3Com 3cR990 (``Typhoon'')
177device vx # 3Com 3c590, 3c595 (``Vortex'')
178
179# PCI Ethernet NICs that use the common MII bus controller code.
180# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
181device miibus # MII bus support
182device bfe # Broadcom BCM440x 10/100 Ethernet
183device bge # Broadcom BCM570xx Gigabit Ethernet
184device dc # DEC/Intel 21143 and various workalikes
185device fxp # Intel EtherExpress PRO/100B (82557, 82558)
186device pcn # AMD Am79C97x PCI 10/100 (precedence over 'lnc')
187device re # RealTek 8139C+/8169/8169S/8110S
188device rl # RealTek 8129/8139
189device sf # Adaptec AIC-6915 (``Starfire'')
190device sis # Silicon Integrated Systems SiS 900/SiS 7016
191device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
192device ste # Sundance ST201 (D-Link DFE-550TX)
193device ti # Alteon Networks Tigon I/II gigabit Ethernet
194device tl # Texas Instruments ThunderLAN
195device tx # SMC EtherPower II (83c170 ``EPIC'')
196device vr # VIA Rhine, Rhine II
197device wb # Winbond W89C840F
198device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
199
200# ISA Ethernet NICs. pccard NICs included.
201# 'device ed' requires 'device miibus'
202device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards
203device ep # Etherlink III based cards
204device fe # Fujitsu MB8696x based cards
205device lnc # C-NET(98)S
206device sn # SMC's 9000 series of Ethernet chips
207device snc
208device xe # Xircom pccard Ethernet
209
210# Wireless NIC cards
211device wlan # 802.11 support
212device an # Aironet 4500/4800 802.11 wireless NICs.
213device awi # BayStack 660 and others
214device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
215#device wl # Older non 802.11 Wavelan wireless NIC.
216
217# Pseudo devices.
218device loop # Network loopback
219device mem # Memory and kernel memory devices
220device io # I/O device
221device random # Entropy device
222device ether # Ethernet support
223device sl # Kernel SLIP
224device ppp # Kernel PPP
225device tun # Packet tunnel.
226device pty # Pseudo-ttys (telnet etc)
227device md # Memory "disks"
228device gif # IPv6 and IPv4 tunneling
229device faith # IPv6-to-IPv4 relaying (translation)
230
231# The `bpf' device enables the Berkeley Packet Filter.
232# Be aware of the administrative consequences of enabling this!
233device bpf # Berkeley packet filter
234
235# USB support
236#device uhci # UHCI PCI->USB interface
237#device ohci # OHCI PCI->USB interface
238#device usb # USB Bus (required)
239#device udbp # USB Double Bulk Pipe devices
240#device ugen # Generic
241#device uhid # "Human Interface Devices"
242#device ukbd # Keyboard
243#device ulpt # Printer
244#device umass # Disks/Mass storage - Requires scbus and da
245#device ums # Mouse
246#device urio # Diamond Rio 500 MP3 player
247#device uscanner # Scanners
248# USB Ethernet, requires mii
249#device aue # ADMtek USB Ethernet
250#device axe # ASIX Electronics USB Ethernet
251#device cue # CATC USB Ethernet
252#device kue # Kawasaki LSI USB Ethernet
253#device rue # RealTek RTL8150 USB Ethernet
254
255# FireWire support
256#device firewire # FireWire bus code
257#device sbp # SCSI over FireWire (Requires scbus and da)
258#device fwe # Ethernet over FireWire (non-standard!)
97
98# SCSI Controllers
99device adv # Advansys SCSI adapters
100device ahc # AHA2940 and onboard AIC7xxx devices
101device amd # AMD 53C974 (Tekram DC-390(T))
102device isp # Qlogic family
103#device ncr # NCR/Symbios Logic
104device sym # NCR/Symbios Logic (newer chipsets + those of `ncr')
105
106device aic # PC-9801-100
107device ct # host adapter using WD33C93[ABC] chip (C bus)
108
109device ncv # NCR 53C500
110device nsp # Workbit Ninja SCSI-3
111device stg # TMC 18C30/18C50
112
113# SCSI peripherals
114device scbus # SCSI bus (required for SCSI)
115device ch # SCSI media changers
116device da # Direct Access (disks)
117device sa # Sequential Access (tape etc)
118device cd # CD
119device pass # Passthrough device (direct SCSI access)
120device ses # SCSI Environmental Services (and SAF-TE)
121
122# keyboard driver
123device pckbd # PC98 keyboard
124
125device gdc # GDC screen
126
127device splash # Splash screen and screen saver support
128
129# syscons is the default console driver, resembling an SCO console
130device sc
131
132#device agp # support several AGP chipsets
133
134# Floating point support - do not disable.
135device npx
136
137# Power management support (see NOTES for more options)
138#device apm
139#device pmc
140#device canbus
141#device canbepm
142# Add suspend/resume support for the i8254.
143#device pmtimer
144
145# Audio support
146#device sound # Generic sound driver
147#device snd_mss # Microsoft Sound System
148#device "snd_sb16" # Sound Blaster 16
149#device snd_sbc # Sound Blaster
150
151# PCMCIA support
152device card # pccard bus
153device pcic # PCMCIA bridge
154
155# Serial (COM) ports
156options COM_MULTIPORT
157#options COM_ESP # ESP98
158device sio # 8250, 16[45]50, 8251 based serial ports
159
160device mse
161#device joy
162
163# NEW Parallel port
164device ppc
165device ppbus # Parallel port bus (required)
166device lpt # Printer
167device plip # TCP/IP over parallel
168device ppi # Parallel port interface device
169#device vpo # Requires scbus and da
170# OLD Parallel port
171# Please stay olpt driver after ppc driver
172#device olpt
173
174# PCI Ethernet NICs.
175device de # DEC/Intel DC21x4x (``Tulip'')
176device em # Intel PRO/1000 adapter Gigabit Ethernet Card
177device txp # 3Com 3cR990 (``Typhoon'')
178device vx # 3Com 3c590, 3c595 (``Vortex'')
179
180# PCI Ethernet NICs that use the common MII bus controller code.
181# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
182device miibus # MII bus support
183device bfe # Broadcom BCM440x 10/100 Ethernet
184device bge # Broadcom BCM570xx Gigabit Ethernet
185device dc # DEC/Intel 21143 and various workalikes
186device fxp # Intel EtherExpress PRO/100B (82557, 82558)
187device pcn # AMD Am79C97x PCI 10/100 (precedence over 'lnc')
188device re # RealTek 8139C+/8169/8169S/8110S
189device rl # RealTek 8129/8139
190device sf # Adaptec AIC-6915 (``Starfire'')
191device sis # Silicon Integrated Systems SiS 900/SiS 7016
192device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
193device ste # Sundance ST201 (D-Link DFE-550TX)
194device ti # Alteon Networks Tigon I/II gigabit Ethernet
195device tl # Texas Instruments ThunderLAN
196device tx # SMC EtherPower II (83c170 ``EPIC'')
197device vr # VIA Rhine, Rhine II
198device wb # Winbond W89C840F
199device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
200
201# ISA Ethernet NICs. pccard NICs included.
202# 'device ed' requires 'device miibus'
203device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards
204device ep # Etherlink III based cards
205device fe # Fujitsu MB8696x based cards
206device lnc # C-NET(98)S
207device sn # SMC's 9000 series of Ethernet chips
208device snc
209device xe # Xircom pccard Ethernet
210
211# Wireless NIC cards
212device wlan # 802.11 support
213device an # Aironet 4500/4800 802.11 wireless NICs.
214device awi # BayStack 660 and others
215device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
216#device wl # Older non 802.11 Wavelan wireless NIC.
217
218# Pseudo devices.
219device loop # Network loopback
220device mem # Memory and kernel memory devices
221device io # I/O device
222device random # Entropy device
223device ether # Ethernet support
224device sl # Kernel SLIP
225device ppp # Kernel PPP
226device tun # Packet tunnel.
227device pty # Pseudo-ttys (telnet etc)
228device md # Memory "disks"
229device gif # IPv6 and IPv4 tunneling
230device faith # IPv6-to-IPv4 relaying (translation)
231
232# The `bpf' device enables the Berkeley Packet Filter.
233# Be aware of the administrative consequences of enabling this!
234device bpf # Berkeley packet filter
235
236# USB support
237#device uhci # UHCI PCI->USB interface
238#device ohci # OHCI PCI->USB interface
239#device usb # USB Bus (required)
240#device udbp # USB Double Bulk Pipe devices
241#device ugen # Generic
242#device uhid # "Human Interface Devices"
243#device ukbd # Keyboard
244#device ulpt # Printer
245#device umass # Disks/Mass storage - Requires scbus and da
246#device ums # Mouse
247#device urio # Diamond Rio 500 MP3 player
248#device uscanner # Scanners
249# USB Ethernet, requires mii
250#device aue # ADMtek USB Ethernet
251#device axe # ASIX Electronics USB Ethernet
252#device cue # CATC USB Ethernet
253#device kue # Kawasaki LSI USB Ethernet
254#device rue # RealTek RTL8150 USB Ethernet
255
256# FireWire support
257#device firewire # FireWire bus code
258#device sbp # SCSI over FireWire (Requires scbus and da)
259#device fwe # Ethernet over FireWire (non-standard!)