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