Advertisement
Guest User

Untitled

a guest
Jun 20th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.02 KB | None | 0 0
  1. cpu HAMMER
  2. ident MYKERN
  3.  
  4. ################################################################################
  5. device coretemp
  6. ################################################################################
  7.  
  8. options SCHED_ULE # ULE scheduler
  9. options PREEMPTION # Enable kernel thread preemption
  10. options INET # InterNETworking
  11. options TCP_OFFLOAD # TCP offload
  12. options FFS # Berkeley Fast Filesystem
  13. options SOFTUPDATES # Enable FFS soft updates support
  14. options UFS_DIRHASH # Improve performance on big directories
  15. options UFS_GJOURNAL # Enable gjournal-based UFS journaling
  16. options MD_ROOT # MD is a potential root device
  17. options MSDOSFS # MSDOS Filesystem
  18. options CD9660 # ISO 9660 Filesystem
  19. options PROCFS # Process filesystem (requires PSEUDOFS)
  20. options PSEUDOFS # Pseudo-filesystem framework
  21. options GEOM_PART_GPT # GUID Partition Tables.
  22. options GEOM_LABEL # Provides labelization
  23. options COMPAT_FREEBSD32 # Compatible with i386 binaries
  24. options COMPAT_FREEBSD4 # Compatible with FreeBSD4
  25. options COMPAT_FREEBSD5 # Compatible with FreeBSD5
  26. options COMPAT_FREEBSD6 # Compatible with FreeBSD6
  27. options COMPAT_FREEBSD7 # Compatible with FreeBSD7
  28. options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
  29. options SYSVSHM # SYSV-style shared memory
  30. options SYSVMSG # SYSV-style message queues
  31. options SYSVSEM # SYSV-style semaphores
  32. options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
  33. options PRINTF_BUFR_SIZE=128 # Prevent printf output being interspersed.
  34. options KBD_INSTALL_CDEV # install a CDEV entry in /dev
  35. options INCLUDE_CONFIG_FILE # Include this file in kernel
  36.  
  37. # Make an SMP-capable kernel by default
  38. options SMP # Symmetric MultiProcessor Kernel
  39.  
  40. # CPU frequency control
  41. device cpufreq
  42.  
  43. # Bus support.
  44. device acpi
  45. device pci
  46.  
  47.  
  48. # ATA controllers
  49. device ahci # AHCI-compatible SATA controllers
  50. device ata # Legacy ATA/SATA controllers
  51. options ATA_STATIC_ID # Static device numbering
  52.  
  53. # ATA/SCSI peripherals
  54. device scbus # SCSI bus (required for ATA/SCSI)
  55. device da # Direct Access (disks)
  56. device cd # CD
  57. device pass # Passthrough device (direct ATA/SCSI access)
  58. device ctl # CAM Target Layer
  59.  
  60. # RAID controllers
  61.  
  62. # atkbdc0 controls both the keyboard and the PS/2 mouse
  63. device atkbdc # AT keyboard controller
  64. device atkbd # AT keyboard
  65. device psm # PS/2 mouse
  66.  
  67. device kbdmux # keyboard multiplexer
  68.  
  69. device vga # VGA video card driver
  70. options VESA # Add support for VESA BIOS Extensions (VBE)
  71.  
  72. device splash # Splash screen and screen saver support
  73.  
  74. # syscons is the default console driver, resembling an SCO console
  75. device sc
  76. options SC_PIXEL_MODE # add support for the raster text mode
  77.  
  78. #device agp # support several AGP chipsets
  79.  
  80. # PCCARD (PCMCIA) support
  81. # PCMCIA and cardbus bridge support
  82.  
  83. # Serial (COM) ports
  84.  
  85. # Parallel port
  86.  
  87. #device puc # Multi I/O cards and multi-channel UARTs
  88.  
  89. # PCI Ethernet NICs.
  90.  
  91. # PCI Ethernet NICs that use the common MII bus controller code.
  92. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
  93. device miibus # MII bus support
  94. device re # RealTek 8139C+/8169/8169S/8110S
  95.  
  96. # ISA Ethernet NICs. pccard NICs included.
  97.  
  98. # Wireless NIC cards
  99. device wlan # 802.11 support
  100. options IEEE80211_DEBUG # enable debug msgs
  101. options IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's
  102. options IEEE80211_SUPPORT_MESH # enable 802.11s draft support
  103. device wlan_wep # 802.11 WEP support
  104. device wlan_ccmp # 802.11 CCMP support
  105. device wlan_tkip # 802.11 TKIP support
  106. device wlan_amrr # AMRR transmit rate control algorithm
  107. device ath # Atheros NICs
  108. device ath_pci # Atheros pci/cardbus glue
  109. device ath_hal # pci/cardbus chip support
  110. options AH_SUPPORT_AR5416 # enable AR5416 tx/rx descriptors
  111. options AH_AR5416_INTERRUPT_MITIGATION # AR5416 interrupt mitigation
  112. options ATH_ENABLE_11N # Enable 802.11n support for AR5416 and later
  113. device ath_rate_sample # SampleRate tx rate control for ath
  114.  
  115. # Pseudo devices.
  116. device loop # Network loopback
  117. device random # Entropy device
  118. device ether # Ethernet support
  119. device vlan # 802.1Q VLAN support
  120. device tun # Packet tunnel.
  121. device md # Memory "disks"
  122. device firmware # firmware assist module
  123.  
  124. # The `bpf' device enables the Berkeley Packet Filter.
  125. # Be aware of the administrative consequences of enabling this!
  126. # Note that 'bpf' is required for DHCP.
  127. device bpf # Berkeley packet filter
  128.  
  129. # USB support
  130. device ehci # EHCI PCI->USB interface (USB 2.0)
  131. device xhci # XHCI PCI->USB interface (USB 3.0)
  132. device usb # USB Bus (required)
  133. device ukbd # Keyboard
  134. device umass # Disks/Mass storage - Requires scbus and da
  135.  
  136. # FireWire support
  137.  
  138. # Sound support
  139. device sound # Generic sound driver (required)
  140. device snd_hda # Intel High Definition Audio
  141. device snd_ich # Intel, NVidia and other ICH AC'97 Audio
  142.  
  143. # MMC/SD
  144. device mmc # MMC/SD bus
  145. device mmcsd # MMC/SD memory card
  146. device sdhci # Generic PCI SD Host Controller
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement