Annotation of elwix/config/ELWIX_i386, revision 1.7
1.7 ! misho 1: # $Id: ELWIX_i386,v 1.6.2.6 2020/06/11 14:29:40 misho Exp $
! 2: # $FreeBSD: head/sys/i386/conf/GENERIC 333890 2018-05-19 19:53:23Z markj $
1.2 misho 3:
4: cpu I486_CPU
5: cpu I586_CPU
6: cpu I686_CPU
7: ident ELWIX_i386
8:
1.4 misho 9: #include DEFAULTS
1.2 misho 10:
11: hints "ELWIX_i386.hints" # Default places to look for devices.
12:
13: options INIT_PATH=/sbin/initx:/sbin/init
14:
15: makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
1.7 ! misho 16: makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support
1.2 misho 17:
1.7 ! misho 18: # UART chips on this platform
! 19: device uart_ns8250
! 20:
! 21: # enable support for native hardware
! 22: device atpic
! 23:
! 24: options NEW_PCIB
1.2 misho 25: options SCHED_ULE # ULE scheduler
26: options PREEMPTION # Enable kernel thread preemption
1.7 ! misho 27: options VIMAGE # Subsystem virtualization, e.g. VNET
1.2 misho 28: options INET # InterNETworking
29: options INET6 # IPv6 communications protocols
1.6 misho 30: options IPSEC # IP (v4/v6) security
1.7 ! misho 31: options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5
1.6 misho 32: options TCP_HHOOK # hhook(9) framework for TCP
1.2 misho 33: options TCP_OFFLOAD # TCP offload
34: options SCTP # Stream Control Transmission Protocol
35: options FFS # Berkeley Fast Filesystem
36: options SOFTUPDATES # Enable FFS soft updates support
37: options UFS_ACL # Support for access control lists
38: options UFS_DIRHASH # Improve performance on big directories
39: options UFS_GJOURNAL # Enable gjournal-based UFS journaling
40: options QUOTA # Enable disk quotas for UFS
1.3 misho 41: options MD_ROOT # MD is a potential root device
1.6 misho 42: options NFSCL # Network Filesystem Client
43: options NFSD # Network Filesystem Server
1.2 misho 44: options NFSLOCKD # Network Lock Manager
45: options NFS_ROOT # NFS usable as /, requires NFSCL
46: options MSDOSFS # MSDOS Filesystem
47: options CD9660 # ISO 9660 Filesystem
48: options PROCFS # Process filesystem (requires PSEUDOFS)
49: options PSEUDOFS # Pseudo-filesystem framework
50: options GEOM_PART_GPT # GUID Partition Tables.
1.7 ! misho 51: options GEOM_PART_BSD
! 52: options GEOM_PART_EBR
! 53: options GEOM_PART_EBR_COMPAT
! 54: options GEOM_PART_MBR
1.2 misho 55: options GEOM_RAID # Soft RAID functionality.
56: options GEOM_LABEL # Provides labelization
1.6 misho 57: #options GEOM_GATE
58: options GEOM_MAP
1.2 misho 59: options GEOM_UZIP
60: #device geom_redboot
61: device geom_map # to get access to the SPI flash partitions
1.6 misho 62: device geom_uzip # compressed in-memory filesystem support
1.2 misho 63: options GEOM_ELI
64: options GEOM_MIRROR
65: options GEOM_CONCAT
66: options GEOM_STRIPE
67: options GEOM_VIRSTOR
68: options GEOM_CACHE
69: options GEOM_MULTIPATH
1.6 misho 70: #options GEOM_LINUX_LVM # Linux LVM2 volumes
1.2 misho 71: options COMPAT_43TTY # BSD 4.3 TTY compat (sgtty)
72: options COMPAT_FREEBSD4 # Compatible with FreeBSD4
73: options COMPAT_FREEBSD5 # Compatible with FreeBSD5
74: options COMPAT_FREEBSD6 # Compatible with FreeBSD6
75: options COMPAT_FREEBSD7 # Compatible with FreeBSD7
1.6 misho 76: options COMPAT_FREEBSD9 # Compatible with FreeBSD9
77: options COMPAT_FREEBSD10 # Compatible with FreeBSD10
78: options COMPAT_FREEBSD11 # Compatible with FreeBSD11
1.2 misho 79: options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
80: options KTRACE # ktrace(1) support
81: options STACK # stack(9) support
82: options SYSVSHM # SYSV-style shared memory
83: options SYSVMSG # SYSV-style message queues
84: options SYSVSEM # SYSV-style semaphores
85: options P1003_1B_MQUEUE
86: options P1003_1B_SEMAPHORES # POSIX-style semaphores
87: options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
88: options PRINTF_BUFR_SIZE=128 # Prevent printf output being interspersed.
89: options KBD_INSTALL_CDEV # install a CDEV entry in /dev
90: options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
91: options AUDIT # Security event auditing
92: options CAPABILITY_MODE # Capsicum capability mode
93: options CAPABILITIES # Capsicum capabilities
94: options MAC # TrustedBSD MAC Framework
1.7 ! misho 95: options KDTRACE_HOOKS # Kernel DTrace hooks
! 96: options DDB_CTF # Kernel ELF linker loads CTF data
1.6 misho 97: options INCLUDE_CONFIG_FILE # Include this file in kernel
98: options RACCT # Resource accounting framework
99: options RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
100: options RCTL # Resource limits
1.2 misho 101:
102: # Debugging support. Always need this:
1.7 ! misho 103: options KDB # Enable kernel debugger support.
! 104: options KDB_TRACE # Print a stack trace for a panic.
1.4 misho 105: # For full debugger support use (turn off in stable branch):
1.7 ! misho 106: options DDB # Support DDB.
! 107: options GDB # Support remote GDB.
1.2 misho 108: #options DEADLKRES # Enable the deadlock resolver
109: #options INVARIANTS # Enable calls of extra sanity checking
110: #options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
111: #options WITNESS # Enable checks to detect deadlocks and cycles
112: #options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
113: #options MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
114:
1.7 ! misho 115: # Kernel dump features.
! 116: options EKCD # Support for encrypted kernel dumps
! 117: options GZIO # gzip-compressed kernel and user dumps
! 118: options ZSTDIO # zstd-compressed kernel and user dumps
! 119: options NETDUMP # netdump(4) client support
! 120:
1.2 misho 121: # To make an SMP kernel, the next two lines are needed
122: options SMP # Symmetric MultiProcessor Kernel
123: device apic # I/O APIC
1.7 ! misho 124: options EARLY_AP_STARTUP
1.2 misho 125:
126: # CPU frequency control
127: device cpufreq
128:
129: # Bus support.
1.7 ! misho 130: device isa
! 131: options ISAPNP
1.2 misho 132: device acpi
133: device pci
1.6 misho 134: options PCI_HP # PCI-Express native HotPlug
135: options PCI_IOV # PCI SR-IOV support
1.2 misho 136:
137: # Floppy drives
138: device fdc
139:
140: # ATA controllers
1.6 misho 141: device ahci # AHCI-compatible SATA controllers
142: device ata # Legacy ATA/SATA controllers
143: device mvs # Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA
144: device siis # SiliconImage SiI3124/SiI3132/SiI3531 SATA
1.2 misho 145:
146: # SCSI Controllers
1.6 misho 147: device ahc # AHA2940 and onboard AIC7xxx devices
148: device esp # AMD Am53C974 (Tekram DC-390(T))
149: device hptiop # Highpoint RocketRaid 3xxx series
150: device isp # Qlogic family
151: #device ispfw # Firmware for QLogic HBAs- normally a module
152: device mpt # LSI-Logic MPT-Fusion
153: device mps # LSI-Logic MPT-Fusion 2
154: device mpr # LSI-Logic MPT-Fusion 3
155: #device ncr # NCR/Symbios Logic
156: device sym # NCR/Symbios Logic (newer chipsets + those of `ncr')
157: device trm # Tekram DC395U/UW/F DC315U adapters
158:
159: device adv # Advansys SCSI adapters
160: device adw # Advansys wide SCSI adapters
161: device aha # Adaptec 154x SCSI adapters
162: device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
163: device bt # Buslogic/Mylex MultiMaster SCSI adapters
164:
165: device ncv # NCR 53C500
166: device nsp # Workbit Ninja SCSI-3
167: device stg # TMC 18C30/18C50
168: device isci # Intel C600 SAS controller
1.2 misho 169:
170: # ATA/SCSI peripherals
1.6 misho 171: device scbus # SCSI bus (required for ATA/SCSI)
172: device ch # SCSI media changers
173: device da # Direct Access (disks)
174: device sa # Sequential Access (tape etc)
175: device cd # CD
176: device pass # Passthrough device (direct ATA/SCSI access)
177: device ses # Enclosure Services (SES and SAF-TE)
178: #device ctl # CAM Target Layer
1.2 misho 179:
180: # RAID controllers interfaced to the SCSI subsystem
1.6 misho 181: device amr # AMI MegaRAID
182: device arcmsr # Areca SATA II RAID
183: device ciss # Compaq Smart RAID 5*
184: device dpt # DPT Smartcache III, IV - See NOTES for options
185: device hptmv # Highpoint RocketRAID 182x
186: device hptnr # Highpoint DC7280, R750
187: device hptrr # Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx
188: device hpt27xx # Highpoint RocketRAID 27xx
189: device iir # Intel Integrated RAID
190: device ips # IBM (Adaptec) ServeRAID
191: device mly # Mylex AcceleRAID/eXtremeRAID
192: device twa # 3ware 9000 series PATA/SATA RAID
193: device tws # LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller
1.2 misho 194:
195: # RAID controllers
1.6 misho 196: device aac # Adaptec FSA RAID
197: device aacp # SCSI passthrough for aac (requires CAM)
198: device aacraid # Adaptec by PMC RAID
199: device ida # Compaq Smart RAID
200: device mfi # LSI MegaRAID SAS
201: device mlx # Mylex DAC960 family
202: device mrsas # LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
203: device pmspcv # PMC-Sierra SAS/SATA Controller driver
204: device pst # Promise Supertrak SX6000
205: device twe # 3ware ATA RAID
206:
207: # NVM Express (NVMe) support
208: device nvme # base NVMe driver
209: device nvd # expose NVMe namespace as disks, depends on nvme
1.2 misho 210:
211: # atkbdc0 controls both the keyboard and the PS/2 mouse
1.6 misho 212: device atkbdc # AT keyboard controller
213: device atkbd # AT keyboard
214: device psm # PS/2 mouse
1.2 misho 215:
1.6 misho 216: device kbdmux # keyboard multiplexer
1.2 misho 217:
1.6 misho 218: device vga # VGA video card driver
219: options VESA # Add support for VESA BIOS Extensions (VBE)
1.2 misho 220:
1.6 misho 221: device splash # Splash screen and screen saver support
1.2 misho 222:
223: # syscons is the default console driver, resembling an SCO console
224: device sc
1.6 misho 225: options SC_PIXEL_MODE # add support for the raster text mode
1.2 misho 226:
1.5 misho 227: # vt is the new video console driver
228: device vt
229: device vt_vga
230:
231: device agp # support several AGP chipsets
1.2 misho 232:
233: # Power management support (see NOTES for more options)
234: #device apm
235:
236: # PCCARD (PCMCIA) support
237: # PCMCIA and cardbus bridge support
1.6 misho 238: device cbb # cardbus (yenta) bridge
239: device pccard # PC Card (16-bit) bus
240: device cardbus # CardBus (32-bit) bus
1.2 misho 241:
242: # Serial (COM) ports
1.6 misho 243: device uart # Generic UART driver
1.2 misho 244:
245: # Parallel port
246: device ppc
1.6 misho 247: device ppbus # Parallel port bus (required)
248: device lpt # Printer
249: device ppi # Parallel port interface device
250: #device vpo # Requires scbus and da
1.2 misho 251:
1.6 misho 252: device puc # Multi I/O cards and multi-channel UARTs
1.2 misho 253:
254: # PCI Ethernet NICs.
1.6 misho 255: device bxe # Broadcom NetXtreme II BCM5771X/BCM578XX 10GbE
256: device de # DEC/Intel DC21x4x (``Tulip'')
257: device em # Intel PRO/1000 Gigabit Ethernet Family
258: device le # AMD Am7900 LANCE and Am79C9xx PCnet
259: device ti # Alteon Networks Tigon I/II gigabit Ethernet
260: device txp # 3Com 3cR990 (``Typhoon'')
261: device vx # 3Com 3c590, 3c595 (``Vortex'')
1.2 misho 262: #device vxge # Exar/Neterion XFrame 3100 10GbE
263: #device mxge # Myricom Myri-10G 10GbE NIC
264: #device nxge # Neterion Xframe 10GbE Server/Storage Adapter
265: #device ixgbe # Intel Pro/10Gbe PCIE Ethernet
266: #device cxgbe # Chelsio T4 10GbE PCIe adapter
267: #device cxgb # Chelsio T3 10 Gigabit Ethernet
268: #device cxgb_t3fw # Chelsio T3 10 Gigabit Ethernet firmware
269: #device my # Myson Fast Ethernet (MTD80X, MTD89X)
270:
271: # PCI Ethernet NICs that use the common MII bus controller code.
272: # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
1.6 misho 273: device miibus # MII bus support
274: device ae # Attansic/Atheros L2 FastEthernet
275: device age # Attansic/Atheros L1 Gigabit Ethernet
276: device alc # Atheros AR8131/AR8132 Ethernet
277: device ale # Atheros AR8121/AR8113/AR8114 Ethernet
278: device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet
279: device bfe # Broadcom BCM440x 10/100 Ethernet
280: device bge # Broadcom BCM570xx Gigabit Ethernet
281: #device cas # Sun Cassini/Cassini+ and NS DP83065 Saturn
282: device dc # DEC/Intel 21143 and various workalikes
283: device et # Agere ET1310 10/100/Gigabit Ethernet
284: device fxp # Intel EtherExpress PRO/100B (82557, 82558)
285: #device gem # Sun GEM/Sun ERI/Apple GMAC
286: #device hme # Sun HME (Happy Meal Ethernet)
287: device jme # JMicron JMC250 Gigabit/JMC260 Fast Ethernet
288: device lge # Level 1 LXT1001 gigabit Ethernet
289: device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet
290: device nfe # nVidia nForce MCP on-board Ethernet
291: device nge # NatSemi DP83820 gigabit Ethernet
292: device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le')
293: device re # RealTek 8139C+/8169/8169S/8110S
294: device rl # RealTek 8129/8139
295: device sf # Adaptec AIC-6915 (``Starfire'')
296: device sge # Silicon Integrated Systems SiS190/191
297: device sis # Silicon Integrated Systems SiS 900/SiS 7016
298: device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
299: device ste # Sundance ST201 (D-Link DFE-550TX)
300: device stge # Sundance/Tamarack TC9021 gigabit Ethernet
301: device tl # Texas Instruments ThunderLAN
302: device tx # SMC EtherPower II (83c170 ``EPIC'')
303: device vge # VIA VT612x gigabit Ethernet
304: device vr # VIA Rhine, Rhine II
305: device vte # DM&P Vortex86 RDC R6040 Fast Ethernet
306: device wb # Winbond W89C840F
307: device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
1.2 misho 308:
309: # ISA Ethernet NICs. pccard NICs included.
1.6 misho 310: device cs # Crystal Semiconductor CS89x0 NIC
1.2 misho 311: # 'device ed' requires 'device miibus'
1.6 misho 312: device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards
313: device ex # Intel EtherExpress Pro/10 and Pro/10+
314: device ep # Etherlink III based cards
315: device fe # Fujitsu MB8696x based cards
316: device sn # SMC's 9000 series of Ethernet chips
317: device xe # Xircom pccard Ethernet
1.2 misho 318:
1.7 ! misho 319: #options XBONEHACK
1.2 misho 320: device wlan_acl
321: device wlan_xauth
322: device wlan_rssadapt
323: #options AH_RXCFG_SDMAMW_4BYTES
324: #options ATH_EEPROM_FIRMWARE # Use EEPROM from flash
325: options ALQ
326: options IEEE80211_ALQ
327: options IEEE80211_SUPPORT_TDMA
328: options IEEE80211_SUPPORT_SUPERG
329: # Wireless NIC cards
1.6 misho 330: device wlan # 802.11 support
331: options IEEE80211_DEBUG # enable debug msgs
332: options IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's
1.2 misho 333: options IEEE80211_SUPPORT_MESH # enable 802.11s draft support
1.6 misho 334: device wlan_wep # 802.11 WEP support
335: device wlan_ccmp # 802.11 CCMP support
336: device wlan_tkip # 802.11 TKIP support
337: device wlan_amrr # AMRR transmit rate control algorithm
338: device an # Aironet 4500/4800 802.11 wireless NICs.
339: device ath # Atheros NICs
340: device ath_pci # Atheros pci/cardbus glue
341: device ath_hal # pci/cardbus chip support
1.2 misho 342: options AH_SUPPORT_AR5416 # enable AR5416 tx/rx descriptors
1.6 misho 343: options AH_AR5416_INTERRUPT_MITIGATION # AR5416 interrupt mitigation
344: options ATH_ENABLE_11N # Enable 802.11n support for AR5416 and later
345: device ath_rate_sample # SampleRate tx rate control for ath
346: #device bwi # Broadcom BCM430x/BCM431x wireless NICs.
347: #device bwn # Broadcom BCM43xx wireless NICs.
348: device ipw # Intel 2100 wireless NICs.
349: device iwi # Intel 2200BG/2225BG/2915ABG wireless NICs.
350: device iwn # Intel 4965/1000/5000/6000 wireless NICs.
351: device malo # Marvell Libertas wireless NICs.
352: device mwl # Marvell 88W8363 802.11n wireless NICs.
353: device ral # Ralink Technology RT2500 wireless NICs.
354: device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
355: device wpi # Intel 3945ABG wireless NICs.
1.2 misho 356:
357: device iwifw
358: device ipwfw
359: device iwnfw
360: device mwlfw
361: device wpifw
362:
363: # Pseudo devices.
1.7 ! misho 364: device mem # Memory and kernel memory devices
! 365: device io # I/O device
1.6 misho 366: device loop # Network loopback
367: device random # Entropy device
368: device padlock_rng # VIA Padlock RNG
369: device rdrand_rng # Intel Bull Mountain RNG
370: device ether # Ethernet support
371: device vlan # 802.1Q VLAN support
372: device tun # Packet tunnel.
373: device md # Memory "disks"
374: device gif # IPv6 and IPv4 tunneling
375: device firmware # firmware assist module
1.2 misho 376:
377: # The `bpf' device enables the Berkeley Packet Filter.
378: # Be aware of the administrative consequences of enabling this!
379: # Note that 'bpf' is required for DHCP.
1.6 misho 380: device bpf # Berkeley packet filter
1.2 misho 381:
382: # USB support
1.7 ! misho 383: options USB_DEBUG # enable debug msgs
1.6 misho 384: device uhci # UHCI PCI->USB interface
385: device ohci # OHCI PCI->USB interface
386: device ehci # EHCI PCI->USB interface (USB 2.0)
387: device xhci # XHCI PCI->USB interface (USB 3.0)
388: device usb # USB Bus (required)
389: device ukbd # Keyboard
390: device umass # Disks/Mass storage - Requires scbus and da
1.7 ! misho 391:
1.2 misho 392: # USB Serial devices
393: device u3g # USB-based 3G modems (Option, Huawei, Sierra)
394: device uark # Technologies ARK3116 based serial adapters
395: device ubsa # Belkin F5U103 and compatible serial adapters
396: device uftdi # For FTDI usb serial adapters
397: device uipaq # Some WinCE based devices
398: device uplcom # Prolific PL-2303 serial adapters
399: device uslcom # SI Labs CP2101/CP2102 serial adapters
400: device uvisor # Visor and Palm devices
401: device uvscom # USB serial support for DDI pocket's PHS
402: # USB Ethernet, requires miibus
403: device aue # ADMtek USB Ethernet
404: device axe # ASIX Electronics USB Ethernet
405: device cdce # Generic USB over Ethernet
406: device cue # CATC USB Ethernet
407: device kue # Kawasaki LSI USB Ethernet
408: device rue # RealTek RTL8150 USB Ethernet
409: device udav # Davicom DM9601E USB
410: # USB Wireless
411: device rum # Ralink Technology RT2501USB wireless NICs
412: device run # Ralink Technology RT2700/RT2800/RT3000 NICs.
413: device uath # Atheros AR5523 wireless NICs
414: device upgt # Conexant/Intersil PrismGT wireless NICs.
415: device ural # Ralink Technology RT2500USB wireless NICs
416: device urtw # Realtek RTL8187B/L wireless NICs
417: device zyd # ZyDAS zd1211/zd1211b wireless NICs
418:
419: device ucom
420: device umcs
421:
422: # FireWire support
423: device firewire # FireWire bus code
424: # sbp(4) works for some systems but causes boot failure on others
425: #device sbp # SCSI over FireWire (Requires scbus and da)
426: device fwe # Ethernet over FireWire (non-standard!)
427: device fwip # IP over FireWire (RFC 2734,3146)
428: device dcons # Dumb console driver
429: device dcons_crom # Configuration ROM for dcons
430:
431: # Sound support
1.6 misho 432: device sound # Generic sound driver (required)
433: device snd_cmi # CMedia CMI8338/CMI8738
434: device snd_csa # Crystal Semiconductor CS461x/428x
435: device snd_emu10kx # Creative SoundBlaster Live! and Audigy
436: device snd_es137x # Ensoniq AudioPCI ES137x
437: device snd_hda # Intel High Definition Audio
438: device snd_ich # Intel, NVidia and other ICH AC'97 Audio
439: device snd_via8233 # VIA VT8233x Audio
1.2 misho 440:
441: # MMC/SD
1.6 misho 442: device mmc # MMC/SD bus
443: device mmcsd # MMC/SD memory card
444: device sdhci # Generic PCI SD Host Controller
1.2 misho 445:
446: # VirtIO support
1.6 misho 447: device virtio # Generic VirtIO bus (required)
448: device virtio_pci # VirtIO PCI device
449: device vtnet # VirtIO Ethernet device
450: device virtio_blk # VirtIO Block device
451: device virtio_scsi # VirtIO SCSI device
452: device virtio_balloon # VirtIO Memory Balloon device
1.2 misho 453:
1.7 ! misho 454: # HyperV drivers and enhancement support
1.6 misho 455: device hyperv # HyperV drivers
1.5 misho 456:
457: # Xen HVM Guest Optimizations
458: # NOTE: XENHVM depends on xenpci. They must be added or removed together.
1.6 misho 459: options XENHVM # Xen HVM kernel infrastructure
460: device xenpci # Xen HVM Hypervisor services driver
1.5 misho 461:
462: # VMware support
1.6 misho 463: device vmx # VMware VMXNET3 Ethernet
464:
465: # The crypto framework is required by IPSEC
466: device crypto # Required by IPSEC
1.4 misho 467:
1.2 misho 468: ### ELWIX Additional custom settings ...
469:
1.7 ! misho 470: # Add multiple route table support
! 471: #options ROUTETABLES=16
! 472:
! 473: device iscsi
! 474: #device iser
1.5 misho 475:
1.2 misho 476: device if_bridge
477: device tap
478: device gre
479: device lagg
480: device carp
481:
1.7 ! misho 482: #options NDISAPI
1.2 misho 483: #device ndis
484:
485: device pf
486: device pflog
487: device pfsync
488:
489: device hifn
490: device enc
491: device cryptodev
1.7 ! misho 492: options TCP_SIGNATURE #include support for RFC 2385
1.2 misho 493:
494: options ALTQ
495: options ALTQ_CBQ
496: options ALTQ_HFSC
497: options ALTQ_PRIQ
498: options ALTQ_CDNR
499: options ALTQ_RED
500: options ALTQ_RIO
501:
502: options MROUTING
503: options RADIX_MPATH
504: options PPS_SYNC
505: options DEVICE_POLLING
506: options HZ=1000
507:
508: options IPFIREWALL
509: options IPFIREWALL_VERBOSE
510: options IPFIREWALL_VERBOSE_LIMIT=100
511: options IPFIREWALL_DEFAULT_TO_ACCEPT
512: options IPFIREWALL_NAT
513: options LIBALIAS
514: options IPDIVERT
515: options IPSTEALTH
516: options DUMMYNET
517:
518: options NETGRAPH
519: options NETGRAPH_ETHER
520: options NETGRAPH_SOCKET
521: options NETGRAPH_PPPOE
522: options NETGRAPH_KSOCKET
523: options NETGRAPH_PPTPGRE
524: options NETGRAPH_L2TP
525: options NETGRAPH_ECHO
526: options NETGRAPH_FRAME_RELAY
527: options NETGRAPH_LMI
528: options NETGRAPH_TTY
529: options NETGRAPH_CISCO
530: ##options NETGRAPH_MPPC_COMPRESSION
531: options NETGRAPH_MPPC_ENCRYPTION
532: options NETGRAPH_PPP
533: options NETGRAPH_VJC
534: options NETGRAPH_UI
535: options NETGRAPH_TCPMSS
536: options NETGRAPH_DEFLATE
537: options NETGRAPH_PRED1
538: options NETGRAPH_RFC1490
539: options NETGRAPH_SPPP
540: options NETGRAPH_TAG
541: options NETGRAPH_IPFW
542: options NETGRAPH_IFACE
543: options NETGRAPH_EIFACE
544: options NETGRAPH_TEE
545: options NETGRAPH_ASYNC
546: options NETGRAPH_SPLIT
547: options NETGRAPH_HOLE
548: options NETGRAPH_ONE2MANY
549: options NETGRAPH_NETFLOW
550: options NETGRAPH_BPF
551: options NETGRAPH_GIF
552: options NETGRAPH_GIF_DEMUX
553: options NETGRAPH_BRIDGE
554: options NETGRAPH_VLAN
555: options NETGRAPH_PIPE
556: options NETGRAPH_CAR
557:
558: options NULLFS
559: options UNIONFS
560: options TMPFS
561:
562: device ic
563: device iic
564: device iicsmb
565: #device iicoc # OpenCores I2C controller support
566: device smb
567: device smbus
568: device iicbus
569: device iicbb
570: device bktr
571: options BKTR_NEW_MSP34XX_DRIVER
572: options BKTR_KODICOM_MUX
573: device speaker
574:
575: device ds133x
576: device ds1374
577: device ds1672
578:
579: device intpm
580: device alpm
581: device ichsmb
582: device viapm
583: device amdpm
584: device amdsmb
585: device nfpm
586: device nfsmb
587:
588: device ipmi
589: device pcf
590:
591: device gpio
592: device gpioled
593: device gpioiic
594:
595: device glxsb
596: device glxiic
597: options CPU_GEODE
598: options CPU_SOEKRIS
599: options COMPAT_AOUT
600: options ENABLE_ALART # Control alarm on Intel intpm driver
601: options PANIC_REBOOT_WAIT_TIME=10
602: device coretemp
603: device cpuctl
604: device nvram
605: device ichwd
606: device amdsbwd
607: device viawd
608: device wbwd
609:
1.6 misho 610: device vxlan
611:
1.2 misho 612: #device disc
613: #device edsc
1.6 misho 614: #device epair
1.2 misho 615: device stf
616:
1.6 misho 617: device netmap
1.2 misho 618:
619: device rlswitch
620:
621: options ACCEPT_FILTER_DATA
622: options ACCEPT_FILTER_DNS
623: options ACCEPT_FILTER_HTTP
624:
625: options SW_WATCHDOG
626:
627: device etherswitch
1.7 ! misho 628: #device rtl8366rb
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>