| Commit | Line | Data |
|---|---|---|
| 984263bc | 1 | # |
| 8611e04d | 2 | # GENERIC -- Generic kernel configuration file for DragonFly/i386 |
| 984263bc | 3 | # |
| 23e12d00 | 4 | # Check the LINT configuration file in sys/config, for an |
| 43800c56 | 5 | # exhaustive list of options. |
| 984263bc | 6 | # |
| e7a389e6 | 7 | # $DragonFly: src/sys/config/GENERIC,v 1.60 2008/07/26 14:26:30 sephe Exp $ |
| 984263bc | 8 | |
| 0955fd91 MD |
9 | platform pc32 |
| 10 | machine i386 | |
| a9295349 | 11 | machine_arch i386 |
| 984263bc MD |
12 | cpu I486_CPU |
| 13 | cpu I586_CPU | |
| 14 | cpu I686_CPU | |
| 15 | ident GENERIC | |
| 16 | maxusers 0 | |
| 17 | ||
| 1037a9ff | 18 | makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols |
| 984263bc MD |
19 | |
| 20 | options MATH_EMULATE #Support for x87 emulation | |
| 21 | options INET #InterNETworking | |
| 22 | options INET6 #IPv6 communications protocols | |
| 4053e3e0 | 23 | options HAMMER #Hammer Filesystem |
| 5b8974f6 | 24 | options NULLFS #NULL filesystem |
| 984263bc MD |
25 | options FFS #Berkeley Fast Filesystem |
| 26 | options FFS_ROOT #FFS usable as root device [keep this!] | |
| 27 | options SOFTUPDATES #Enable FFS soft updates support | |
| 28 | options UFS_DIRHASH #Improve performance on big directories | |
| 29 | options MFS #Memory Filesystem | |
| 7a2de9a4 | 30 | options TMPFS #Temporary Filesystem |
| 984263bc MD |
31 | options MD_ROOT #MD is a potential root device |
| 32 | options NFS #Network Filesystem | |
| 33 | options NFS_ROOT #NFS usable as root device, NFS required | |
| 34 | options MSDOSFS #MSDOS Filesystem | |
| 35 | options CD9660 #ISO 9660 Filesystem | |
| 984263bc MD |
36 | options PROCFS #Process filesystem |
| 37 | options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] | |
| db37e804 | 38 | options COMPAT_DF12 #Compatible with DragonFly 1.2 and earlier |
| dd5596d6 | 39 | options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI |
| fe091cd0 SZ |
40 | options DEVICE_POLLING # Support mixed interrupt-polling |
| 41 | # handling of network device drivers | |
| 984263bc MD |
42 | options UCONSOLE #Allow users to grab the console |
| 43 | options USERCONFIG #boot -c editor | |
| 44 | options VISUAL_USERCONFIG #visual boot -c editor | |
| 45 | options KTRACE #ktrace(1) support | |
| 46 | options SYSVSHM #SYSV-style shared memory | |
| 47 | options SYSVMSG #SYSV-style message queues | |
| 48 | options SYSVSEM #SYSV-style semaphores | |
| 49 | options P1003_1B #Posix P1003_1B real-time extensions | |
| 50 | options _KPOSIX_PRIORITY_SCHEDULING | |
| 51 | options ICMP_BANDLIM #Rate limit bad replies | |
| 52 | options KBD_INSTALL_CDEV # install a CDEV entry in /dev | |
| 53 | options AHC_REG_PRETTY_PRINT # Print register bitfields in debug | |
| 54 | # output. Adds ~128k to driver. | |
| 1a5d3c35 | 55 | options AHD_REG_PRETTY_PRINT # Print register bitfields in debug |
| 984263bc MD |
56 | # output. Adds ~215k to driver. |
| 57 | ||
| 97359a5b MD |
58 | # To make an SMP kernel both SMP and APIC_IO are usually |
| 59 | # specified. SMP boxes with severely broken BIOSes which | |
| 60 | # boot fine for non-SMP builds *might* work in SMP mode | |
| 61 | # if you define SMP and leave APIC_IO turned off. | |
| 62 | # | |
| 984263bc MD |
63 | #options SMP # Symmetric MultiProcessor Kernel |
| 64 | #options APIC_IO # Symmetric (APIC) I/O | |
| 65 | ||
| 1037a9ff | 66 | # Debugging for Development |
| 78990d4c | 67 | options DDB |
| 863c2f64 | 68 | options DDB_TRACE |
| 78990d4c | 69 | options INVARIANTS |
| 1037a9ff | 70 | |
| 984263bc MD |
71 | device isa |
| 72 | device eisa | |
| 73 | device pci | |
| 74 | ||
| 75 | # Floppy drives | |
| 76 | device fdc0 at isa? port IO_FD1 irq 6 drq 2 | |
| 77 | device fd0 at fdc0 drive 0 | |
| 78 | device fd1 at fdc0 drive 1 | |
| 79 | # | |
| 80 | # If you have a Toshiba Libretto with its Y-E Data PCMCIA floppy, | |
| 81 | # don't use the above line for fdc0 but the following one: | |
| 82 | #device fdc0 | |
| 83 | ||
| c2a10df4 MD |
84 | # AHCI driver, this will override NATA for AHCI devices, |
| 85 | # both drivers may be included. | |
| 86 | # | |
| 87 | device ahci | |
| 88 | ||
| d856dabc | 89 | # SiI3124/3132 driver |
| 7c5306ee SW |
90 | # |
| 91 | device sili | |
| 92 | ||
| 9f97f66c MD |
93 | # NEW-ATA (NATA) and ATAPI devices |
| 94 | # | |
| 95 | device nata | |
| 96 | device natadisk # ATA disk drives | |
| 97 | device natapicd # ATAPI CDROM drives | |
| 98 | device natapifd # ATAPI floppy drives | |
| 99 | device natapist # ATAPI tape drives | |
| d856dabc | 100 | device natapicam # Emulate ATAPI devices as SCSI |
| 20ed31d2 SW |
101 | device nataraid # support for ATA software RAID |
| 102 | # controllers | |
| 103 | device natausb # ATA-over-USB support | |
| 9f97f66c | 104 | options ATA_STATIC_ID # Static device numbering |
| 9f97f66c MD |
105 | |
| 106 | # LEGACY ATA and ATAPI devices | |
| 107 | #device ata0 at isa? port IO_WD1 irq 14 | |
| 108 | #device ata1 at isa? port IO_WD2 irq 15 | |
| 109 | #device ata | |
| 110 | #device atadisk # ATA disk drives | |
| 111 | #device atapicd # ATAPI CDROM drives | |
| 112 | #device atapifd # ATAPI floppy drives | |
| 113 | #device atapist # ATAPI tape drives | |
| 114 | #device atapicam # Emulate ATAPI devices as SCSI via CAM | |
| 115 | #options ATA_STATIC_ID #Static device numbering | |
| 984263bc MD |
116 | |
| 117 | # SCSI Controllers | |
| 118 | device ahb # EISA AHA1742 family | |
| 119 | device ahc # AHA2940 and onboard AIC7xxx devices | |
| 120 | device ahd # AHA39320/29320 and onboard AIC79xx devices | |
| 121 | device amd # AMD 53C974 (Tekram DC-390(T)) | |
| 122 | device isp # Qlogic family | |
| 123 | device mpt # LSI-Logic MPT/Fusion | |
| 124 | device ncr # NCR/Symbios Logic | |
| 125 | device sym # NCR/Symbios Logic (newer chipsets) | |
| 126 | options SYM_SETUP_LP_PROBE_MAP=0x40 | |
| d856dabc | 127 | # Allow ncr to attach legacy NCR devices when |
| 984263bc MD |
128 | # both sym and ncr are configured |
| 129 | ||
| 130 | device adv0 at isa? | |
| 131 | device adw | |
| 132 | device bt0 at isa? | |
| 133 | device aha0 at isa? | |
| 134 | device aic0 at isa? | |
| 135 | ||
| 136 | device ncv # NCR 53C500 | |
| 137 | device nsp # Workbit Ninja SCSI-3 | |
| 138 | device stg # TMC 18C30/18C50 | |
| 139 | ||
| 140 | # SCSI peripherals | |
| 141 | device scbus # SCSI bus (required) | |
| 142 | device da # Direct Access (disks) | |
| 143 | device sa # Sequential Access (tape etc) | |
| 144 | device cd # CD | |
| 145 | device pass # Passthrough device (direct SCSI access) | |
| 388705e4 | 146 | device sg # Passthrough device (linux scsi generic) |
| 984263bc MD |
147 | |
| 148 | # RAID controllers interfaced to the SCSI subsystem | |
| 149 | device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID | |
| 150 | device dpt # DPT Smartcache - See LINT for options! | |
| 151 | device iir # Intel Integrated RAID | |
| 152 | device mly # Mylex AcceleRAID/eXtremeRAID | |
| 153 | device ciss # Compaq SmartRAID 5* series | |
| 154 | ||
| 155 | # RAID controllers | |
| 156 | device aac # Adaptec FSA RAID, Dell PERC2/PERC3 | |
| 157 | #device aacp # SCSI passthrough for aac (requires CAM) | |
| 158 | device ida # Compaq Smart RAID | |
| 3b191904 | 159 | device ips # IBM ServeRAID |
| 984263bc MD |
160 | device amr # AMI MegaRAID |
| 161 | device mlx # Mylex DAC960 family | |
| 2d0f6098 | 162 | device twe # 3ware Escalade 7000/8000's |
| ab443496 | 163 | device twa # 3ware Escalade 9000's |
| b7ebf86e | 164 | device pst # Promise Supertrack |
| 984263bc MD |
165 | |
| 166 | # atkbdc0 controls both the keyboard and the PS/2 mouse | |
| 167 | device atkbdc0 at isa? port IO_KBD | |
| 168 | device atkbd0 at atkbdc? irq 1 flags 0x1 | |
| 169 | device psm0 at atkbdc? irq 12 | |
| 170 | ||
| 171 | device vga0 at isa? | |
| 172 | ||
| 0b4b2a9a AH |
173 | # kbdmux is the keyboard multiplexer |
| 174 | device kbdmux | |
| 175 | ||
| 984263bc MD |
176 | # splash screen/screen saver |
| 177 | pseudo-device splash | |
| 178 | ||
| 179 | # syscons is the default console driver, resembling an SCO console | |
| 180 | device sc0 at isa? flags 0x100 | |
| c42bc832 | 181 | options SC_PIXEL_MODE # add support for the raster text mode |
| 984263bc | 182 | |
| 984263bc MD |
183 | device agp # support several AGP chipsets |
| 184 | ||
| 185 | # Floating point support - do not disable. | |
| 186 | device npx0 at nexus? port IO_NPX irq 13 | |
| 187 | ||
| 188 | # Power management support (see LINT for more options) | |
| 189 | device apm0 at nexus? disable flags 0x20 # Advanced Power Management | |
| 190 | ||
| 1d03db02 | 191 | # HW monitoring devices |
| 23e32507 | 192 | device aps0 at isa? port 0x1600 |
| 1d03db02 HT |
193 | device lm0 at isa? port 0x290 |
| 194 | device it0 at isa? port 0x290 | |
| 195 | device it1 at isa? port 0xc00 | |
| 196 | device it2 at isa? port 0xd00 | |
| e80cc138 | 197 | device it3 at isa? port 0x228 |
| f81520ed CM |
198 | device wbsio0 at isa? port 0x2e |
| 199 | device wbsio1 at isa? port 0x4e | |
| 200 | device lm#3 at wbsio? | |
| 1d03db02 | 201 | |
| 984263bc | 202 | # PCCARD (PCMCIA) support |
| 666d2603 JS |
203 | device pccard |
| 204 | device cardbus | |
| 205 | device cbb | |
| 984263bc MD |
206 | |
| 207 | # Serial (COM) ports | |
| 208 | device sio0 at isa? port IO_COM1 flags 0x10 irq 4 | |
| 209 | device sio1 at isa? port IO_COM2 irq 3 | |
| 210 | device sio2 at isa? disable port IO_COM3 irq 5 | |
| 211 | device sio3 at isa? disable port IO_COM4 irq 9 | |
| 212 | ||
| 213 | # Parallel port | |
| 214 | device ppc0 at isa? irq 7 | |
| 215 | device ppbus # Parallel port bus (required) | |
| 216 | device lpt # Printer | |
| 217 | device plip # TCP/IP over parallel | |
| 218 | device ppi # Parallel port interface device | |
| 219 | #device vpo # Requires scbus and da | |
| 220 | ||
| 221 | ||
| 222 | # PCI Ethernet NICs. | |
| 223 | device de # DEC/Intel DC21x4x (``Tulip'') | |
| 984263bc MD |
224 | device txp # 3Com 3cR990 (``Typhoon'') |
| 225 | device vx # 3Com 3c590, 3c595 (``Vortex'') | |
| 226 | ||
| 9c80d176 SZ |
227 | device em # Intel PRO/1000 adapter Gigabit Ethernet Card (``Wiseman'') |
| 228 | # Requires ig_hal | |
| 229 | device ig_hal # Intel PRO/1000 hardware abstraction layer | |
| 230 | ||
| 984263bc MD |
231 | # PCI Ethernet NICs that use the common MII bus controller code. |
| 232 | # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! | |
| 233 | device miibus # MII bus support | |
| e8e8c780 | 234 | device ae # Attansic/Atheros L2 Fast Ethernet |
| bcf4d50c | 235 | device age # Attansic/Atheros L1 Gigabit Ethernet |
| da7d5358 | 236 | device alc # Atheros AR8131/AR8132 |
| 8466ae84 | 237 | device ale # Atheros AR8121/AR8113/AR8114 |
| 43c2aeb0 | 238 | device bce # Broadcom NetXtreme II Gigabit Ethernet |
| 7f186839 | 239 | device bfe # Broadcom BCM440x 10/100 Ethernet |
| 984263bc | 240 | device dc # DEC/Intel 21143 and various workalikes |
| d217d4d9 | 241 | device et # Agere ET1310 10/100/1000 Ethernet |
| 984263bc | 242 | device fxp # Intel EtherExpress PRO/100B (82557, 82558) |
| e7a389e6 | 243 | device jme # JMicron Gigabit/Fast Ethernet |
| 984263bc MD |
244 | device pcn # AMD Am79C97x PCI 10/100 NICs |
| 245 | device rl # RealTek 8129/8139 | |
| 3e201bae | 246 | device re # RealTek 8139C+/8169 |
| 984263bc MD |
247 | device sf # Adaptec AIC-6915 (``Starfire'') |
| 248 | device sis # Silicon Integrated Systems SiS 900/SiS 7016 | |
| 0db5ca13 | 249 | device sk # SysKonnect GEnesis, LinkSys EG1023, D-Link |
| 984263bc MD |
250 | device ste # Sundance ST201 (D-Link DFE-550TX) |
| 251 | device tl # Texas Instruments ThunderLAN | |
| 252 | device tx # SMC EtherPower II (83c170 ``EPIC'') | |
| 13bca4c6 | 253 | device vge # VIA 612x GigE |
| 984263bc MD |
254 | device vr # VIA Rhine, Rhine II |
| 255 | device wb # Winbond W89C840F | |
| 256 | device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') | |
| 257 | device bge # Broadcom BCM570x (``Tigon III'') | |
| 1da2c9db | 258 | device stge # Sundance/Tamarack TC9021 Gigabit Ethernet |
| 2d586421 | 259 | device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet |
| 9ba772da | 260 | device nfe # NVIDIA nForce MCP 10/100/Gigabit Ethernet |
| 984263bc MD |
261 | |
| 262 | # ISA Ethernet NICs. | |
| 263 | # 'device ed' requires 'device miibus' | |
| 264 | device ed0 at isa? disable port 0x280 irq 10 iomem 0xd8000 | |
| 265 | device ex | |
| 266 | device ep | |
| 267 | device fe0 at isa? disable port 0x300 | |
| 268 | # Xircom Ethernet | |
| 269 | device xe | |
| 841ab66c SZ |
270 | |
| 271 | # Wireless NIC cards | |
| 272 | device wlan # 802.11 support | |
| 273 | device wlan_ccmp # 802.11 CCMP support | |
| 274 | device wlan_tkip # 802.11 TKIP support | |
| 275 | device wlan_wep # 802.11 WEP support | |
| 428b19ed SZ |
276 | # 802.11 TX rate control algorithms |
| 277 | #device wlan_ratectl_amrr # AMRR | |
| 278 | device wlan_ratectl_onoe # Onoe | |
| 0dba45fe | 279 | device wlan_ratectl_sample # Sample |
| ac6da0a9 | 280 | |
| 841ab66c | 281 | # Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will |
| 984263bc MD |
282 | # work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP |
| 283 | # mode (the factory default). If you set the switches on your ISA | |
| 284 | # card for a manually chosen I/O address and IRQ, you must specify | |
| 285 | # those parameters here. | |
| 286 | device an | |
| 5fdff524 | 287 | device ral # Ralink Technology 802.11 wireless NIC |
| 0dba45fe SZ |
288 | # Requires wlan_ratectl_onoe and |
| 289 | # wlan_ratectl_sample | |
| 428b19ed | 290 | device rtw # RealTek 802.11 wireless NIC |
| 2fc6d79d | 291 | # Requires wlan_ratectl_onoe and wlan_wep |
| 841ab66c SZ |
292 | # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really |
| 293 | # exists only as a PCMCIA device, so there is no ISA attachment needed | |
| 294 | # and resources will always be dynamically assigned by the pccard code. | |
| 295 | device wi | |
| 296 | ||
| 984263bc MD |
297 | # The probe order of these is presently determined by i386/isa/isa_compat.c. |
| 298 | device ie0 at isa? disable port 0x300 irq 10 iomem 0xd0000 | |
| 299 | #device le0 at isa? disable port 0x300 irq 5 iomem 0xd0000 | |
| 300 | device lnc0 at isa? disable port 0x280 irq 10 drq 0 | |
| 301 | device cs0 at isa? disable port 0x300 | |
| 302 | device sn0 at isa? disable port 0x300 irq 10 | |
| 303 | ||
| 304 | # Pseudo devices - the number indicates how many units to allocate. | |
| 305 | pseudo-device loop # Network loopback | |
| 306 | pseudo-device ether # Ethernet support | |
| 307 | pseudo-device sl 1 # Kernel SLIP | |
| 308 | pseudo-device ppp 1 # Kernel PPP | |
| 309 | pseudo-device tun # Packet tunnel. | |
| 310 | pseudo-device pty # Pseudo-ttys (telnet etc) | |
| 311 | pseudo-device md # Memory "disks" | |
| 312 | pseudo-device gif # IPv6 and IPv4 tunneling | |
| 313 | pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) | |
| 314 | ||
| 315 | # The `bpf' pseudo-device enables the Berkeley Packet Filter. | |
| 316 | # Be aware of the administrative consequences of enabling this! | |
| 317 | pseudo-device bpf #Berkeley packet filter | |
| 318 | ||
| acffed4b | 319 | pseudo-device crypto # core crypto support, used by wlan |
| 54734da1 | 320 | pseudo-device cryptodev |
| acffed4b | 321 | |
| 984263bc MD |
322 | # USB support |
| 323 | device uhci # UHCI PCI->USB interface | |
| 324 | device ohci # OHCI PCI->USB interface | |
| 325 | device usb # USB Bus (required) | |
| 326 | device ugen # Generic | |
| 327 | device uhid # "Human Interface Devices" | |
| 328 | device ukbd # Keyboard | |
| 329 | device ulpt # Printer | |
| 330 | device umass # Disks/Mass storage - Requires scbus and da | |
| 331 | device ums # Mouse | |
| 332 | device uscanner # Scanners | |
| 333 | device urio # Diamond Rio MP3 Player | |
| 334 | # USB Ethernet, requires mii | |
| 335 | device aue # ADMtek USB ethernet | |
| 204496c7 | 336 | device axe # ASIX Electronics USB Ethernet |
| 984263bc MD |
337 | device cue # CATC USB ethernet |
| 338 | device kue # Kawasaki LSI USB ethernet | |
| 3c374c15 | 339 | device rue # RealTek 8150 based USB ethernet |
| 428b19ed SZ |
340 | # USB wireless NICs, requires wlan, wlan_ratectl_onoe |
| 341 | device rum # Ralink Technology RT2501USB/RT2601USB | |
| 342 | device ural # Ralink Technology RT2500USB | |
| 984263bc MD |
343 | |
| 344 | # FireWire support | |
| 345 | device firewire # FireWire bus code | |
| 346 | device sbp # SCSI over FireWire (Requires scbus and da) | |
| 347 | device fwe # Ethernet over FireWire (non-standard!) |