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