Advertisement
Guest User

Untitled

a guest
Apr 8th, 2008
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.90 KB | None | 0 0
  1. #cpu I486_CPU
  2. #cpu I586_CPU
  3. cpu I686_CPU
  4. ident CUSTOM
  5.  
  6. # To statically compile in device wiring instead of /boot/device.hints
  7. #hints "GENERIC.hints" # Default places to look for devices.
  8.  
  9. #makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
  10.  
  11. #options SCHED_4BSD # 4BSD scheduler
  12. options SCHED_ULE # ULE scheduler
  13. options PREEMPTION # Enable kernel thread preemption
  14. options INET # InterNETworking
  15. #options INET6 # IPv6 communications protocols
  16. #options SCTP # Stream Control Transmission Protocol
  17. options FFS # Berkeley Fast Filesystem
  18. options SOFTUPDATES # Enable FFS soft updates support
  19. options UFS_ACL # Support for access control lists
  20. options UFS_DIRHASH # Improve performance on big directories
  21. options UFS_GJOURNAL # Enable gjournal-based UFS journaling
  22. options MD_ROOT # MD is a potential root device
  23. #options NFSCLIENT # Network Filesystem Client
  24. #options NFSSERVER # Network Filesystem Server
  25. #options NFS_ROOT # NFS usable as /, requires NFSCLIENT
  26. options MSDOSFS # MSDOS Filesystem
  27. options CD9660 # ISO 9660 Filesystem
  28. options PROCFS # Process filesystem (requires PSEUDOFS)
  29. options PSEUDOFS # Pseudo-filesystem framework
  30. options GEOM_PART_GPT # GUID Partition Tables.
  31. options GEOM_LABEL # Provides labelization
  32. options COMPAT_43TTY # BSD 4.3 TTY compat [KEEP THIS!]
  33. options COMPAT_FREEBSD4 # Compatible with FreeBSD4
  34. options COMPAT_FREEBSD5 # Compatible with FreeBSD5
  35. options COMPAT_FREEBSD6 # Compatible with FreeBSD6
  36. options SCSI_DELAY=20000 # Delay (in ms) before probing SCSI
  37. options KTRACE # ktrace(1) support
  38. options SYSVSHM # SYSV-style shared memory
  39. options SYSVMSG # SYSV-style message queues
  40. options SYSVSEM # SYSV-style semaphores
  41. options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
  42. options KBD_INSTALL_CDEV # install a CDEV entry in /dev
  43. options ADAPTIVE_GIANT # Giant mutex is adaptive.
  44. options STOP_NMI # Stop CPUS using NMI instead of IPI
  45. options AUDIT # Security event auditing
  46.  
  47. # To make an SMP kernel, the next two lines are needed
  48. options SMP # Symmetric MultiProcessor Kernel
  49. device apic # I/O APIC
  50.  
  51. # CPU frequency control
  52. device cpufreq
  53.  
  54. # Bus support.
  55. device eisa
  56. device pci
  57.  
  58. # Floppy drives
  59. device fdc
  60.  
  61. # ATA and ATAPI devices
  62. device ata
  63. device atadisk # ATA disk drives
  64. #device ataraid # ATA RAID drives
  65. device atapicd # ATAPI CDROM drives
  66. #device atapifd # ATAPI floppy drives
  67. #device atapist # ATAPI tape drives
  68. options ATA_STATIC_ID # Static device numbering
  69.  
  70. # SCSI Controllers
  71. #device ahb # EISA AHA1742 family
  72. #device ahc # AHA2940 and onboard AIC7xxx devices
  73. #options AHC_REG_PRETTY_PRINT # Print register bitfields in debug
  74. # output. Adds ~128k to driver.
  75. #device ahd # AHA39320/29320 and onboard AIC79xx devices
  76. #options AHD_REG_PRETTY_PRINT # Print register bitfields in debug
  77. # output. Adds ~215k to driver.
  78. #device amd # AMD 53C974 (Tekram DC-390(T))
  79. #device hptiop # Highpoint RocketRaid 3xxx series
  80. #device isp # Qlogic family
  81. ##device ispfw # Firmware for QLogic HBAs- normally a module
  82. #device mpt # LSI-Logic MPT-Fusion
  83. #device ncr # NCR/Symbios Logic
  84. #device sym # NCR/Symbios Logic (newer chipsets + those of `ncr')
  85. #device trm # Tekram DC395U/UW/F DC315U adapters
  86.  
  87. #device adv # Advansys SCSI adapters
  88. #device adw # Advansys wide SCSI adapters
  89. #device aha # Adaptec 154x SCSI adapters
  90. #device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
  91. #device bt # Buslogic/Mylex MultiMaster SCSI adapters
  92. #
  93. #device ncv # NCR 53C500
  94. #device nsp # Workbit Ninja SCSI-3
  95. #device stg # TMC 18C30/18C50
  96. #
  97. # SCSI peripherals
  98. device scbus # SCSI bus (required for SCSI)
  99. #device ch # SCSI media changers
  100. device da # Direct Access (disks)
  101. #device sa # Sequential Access (tape etc)
  102. #device cd # CD
  103. device pass # Passthrough device (direct SCSI access)
  104. device ses # SCSI Environmental Services (and SAF-TE)
  105.  
  106. # RAID controllers interfaced to the SCSI subsystem
  107. #device amr # AMI MegaRAID
  108. #device arcmsr # Areca SATA II RAID
  109. #device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID
  110. #device ciss # Compaq Smart RAID 5*
  111. #device dpt # DPT Smartcache III, IV - See NOTES for options
  112. #device hptmv # Highpoint RocketRAID 182x
  113. #device hptrr # Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx
  114. device iir # Intel Integrated RAID
  115. #device ips # IBM (Adaptec) ServeRAID
  116. #device mly # Mylex AcceleRAID/eXtremeRAID
  117. #device twa # 3ware 9000 series PATA/SATA RAID
  118.  
  119. # RAID controllers
  120. #device aac # Adaptec FSA RAID
  121. #device aacp # SCSI passthrough for aac (requires CAM)
  122. #device ida # Compaq Smart RAID
  123. #device mfi # LSI MegaRAID SAS
  124. #device mlx # Mylex DAC960 family
  125. #device pst # Promise Supertrak SX6000
  126. #device twe # 3ware ATA RAID
  127.  
  128. # atkbdc0 controls both the keyboard and the PS/2 mouse
  129. device atkbdc # AT keyboard controller
  130. device atkbd # AT keyboard
  131. #device psm # PS/2 mouse
  132.  
  133. device kbdmux # keyboard multiplexer
  134.  
  135. device vga # VGA video card driver
  136.  
  137. device splash # Splash screen and screen saver support
  138.  
  139. # syscons is the default console driver, resembling an SCO console
  140. device sc
  141.  
  142. #device agp # support several AGP chipsets
  143.  
  144. # Power management support (see NOTES for more options)
  145. #device apm
  146. # Add suspend/resume support for the i8254.
  147. device pmtimer
  148.  
  149. # PCCARD (PCMCIA) support
  150. # PCMCIA and cardbus bridge support
  151. #device cbb # cardbus (yenta) bridge
  152. #device pccard # PC Card (16-bit) bus
  153. #device cardbus # CardBus (32-bit) bus
  154.  
  155. # Serial (COM) ports
  156. device sio # 8250, 16[45]50 based serial ports
  157. device uart # Generic UART driver
  158.  
  159. # Parallel port
  160. #device ppc
  161. #device ppbus # Parallel port bus (required)
  162. #device lpt # Printer
  163. #device plip # TCP/IP over parallel
  164. #device ppi # Parallel port interface device
  165. #device vpo # Requires scbus and da
  166.  
  167. # If you've got a "dumb" serial or parallel PCI card that is
  168. # supported by the puc(4) glue driver, uncomment the following
  169. # line to enable it (connects to sio, uart and/or ppc drivers):
  170. #device puc
  171.  
  172. # PCI Ethernet NICs.
  173. #device de # DEC/Intel DC21x4x (``Tulip'')
  174. device em # Intel PRO/1000 adapter Gigabit Ethernet Card
  175. #device ixgb # Intel PRO/10GbE Ethernet Card
  176. #device le # AMD Am7900 LANCE and Am79C9xx PCnet
  177. #device txp # 3Com 3cR990 (``Typhoon'')
  178. #device vx # 3Com 3c590, 3c595 (``Vortex'')
  179.  
  180. # PCI Ethernet NICs that use the common MII bus controller code.
  181. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
  182. #device miibus # MII bus support
  183. #device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet
  184. #device bfe # Broadcom BCM440x 10/100 Ethernet
  185. #device bge # Broadcom BCM570xx Gigabit Ethernet
  186. #device dc # DEC/Intel 21143 and various workalikes
  187. #device fxp # Intel EtherExpress PRO/100B (82557, 82558)
  188. #device lge # Level 1 LXT1001 gigabit Ethernet
  189. #device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet
  190. #device nfe # nVidia nForce MCP on-board Ethernet
  191. #device nge # NatSemi DP83820 gigabit Ethernet
  192. #device nve # nVidia nForce MCP on-board Ethernet Networking
  193. #device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le')
  194. #device re # RealTek 8139C+/8169/8169S/8110S
  195. #device rl # RealTek 8129/8139
  196. #device sf # Adaptec AIC-6915 (``Starfire'')
  197. #device sis # Silicon Integrated Systems SiS 900/SiS 7016
  198. #device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
  199. #device ste # Sundance ST201 (D-Link DFE-550TX)
  200. #device stge # Sundance/Tamarack TC9021 gigabit Ethernet
  201. #device ti # Alteon Networks Tigon I/II gigabit Ethernet
  202. #device tl # Texas Instruments ThunderLAN
  203. #device tx # SMC EtherPower II (83c170 ``EPIC'')
  204. #device vge # VIA VT612x gigabit Ethernet
  205. #device vr # VIA Rhine, Rhine II
  206. #device wb # Winbond W89C840F
  207. #device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
  208.  
  209. # ISA Ethernet NICs. pccard NICs included.
  210. #device cs # Crystal Semiconductor CS89x0 NIC
  211. # 'device ed' requires 'device miibus'
  212. #device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards
  213. #device ex # Intel EtherExpress Pro/10 and Pro/10+
  214. #device ep # Etherlink III based cards
  215. #device fe # Fujitsu MB8696x based cards
  216. #device ie # EtherExpress 8/16, 3C507, StarLAN 10 etc.
  217. #device sn # SMC's 9000 series of Ethernet chips
  218. #device xe # Xircom pccard Ethernet
  219.  
  220. # Wireless NIC cards
  221. #device wlan # 802.11 support
  222. #device wlan_wep # 802.11 WEP support
  223. #device wlan_ccmp # 802.11 CCMP support
  224. #device wlan_tkip # 802.11 TKIP support
  225. #device wlan_amrr # AMRR transmit rate control algorithm
  226. #device wlan_scan_ap # 802.11 AP mode scanning
  227. #device wlan_scan_sta # 802.11 STA mode scanning
  228. #device an # Aironet 4500/4800 802.11 wireless NICs.
  229. #device ath # Atheros pci/cardbus NIC's
  230. #device ath_hal # Atheros HAL (Hardware Access Layer)
  231. #device ath_rate_sample # SampleRate tx rate control for ath
  232. #device awi # BayStack 660 and others
  233. #device ral # Ralink Technology RT2500 wireless NICs.
  234. #device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
  235. #device wl # Older non 802.11 Wavelan wireless NIC.
  236.  
  237. # Pseudo devices.
  238. device loop # Network loopback
  239. device random # Entropy device
  240. device ether # Ethernet support
  241. #device sl # Kernel SLIP
  242. #device ppp # Kernel PPP
  243. device tun # Packet tunnel.
  244. device pty # Pseudo-ttys (telnet etc)
  245. device md # Memory "disks"
  246. #device gif # IPv6 and IPv4 tunneling
  247. #device faith # IPv6-to-IPv4 relaying (translation)
  248. device firmware # firmware assist module
  249.  
  250. # The `bpf' device enables the Berkeley Packet Filter.
  251. # Be aware of the administrative consequences of enabling this!
  252. # Note that 'bpf' is required for DHCP.
  253. device bpf # Berkeley packet filter
  254.  
  255. # USB support
  256. #device uhci # UHCI PCI->USB interface
  257. #device ohci # OHCI PCI->USB interface
  258. #device ehci # EHCI PCI->USB interface (USB 2.0)
  259. #device usb # USB Bus (required)
  260. #device udbp # USB Double Bulk Pipe devices
  261. #device ugen # Generic
  262. #device uhid # "Human Interface Devices"
  263. #device ukbd # Keyboard
  264. #device ulpt # Printer
  265. #device umass # Disks/Mass storage - Requires scbus and da
  266. #device ums # Mouse
  267. #device ural # Ralink Technology RT2500USB wireless NICs
  268. #device rum # Ralink Technology RT2501USB wireless NICs
  269. #device urio # Diamond Rio 500 MP3 player
  270. #device uscanner # Scanners
  271. # USB Ethernet, requires miibus
  272. #device aue # ADMtek USB Ethernet
  273. #device axe # ASIX Electronics USB Ethernet
  274. #device cdce # Generic USB over Ethernet
  275. #device cue # CATC USB Ethernet
  276. #device kue # Kawasaki LSI USB Ethernet
  277. #device rue # RealTek RTL8150 USB Ethernet
  278.  
  279. # FireWire support
  280. #device firewire # FireWire bus code
  281. #device sbp # SCSI over FireWire (Requires scbus and da)
  282. #device fwe # Ethernet over FireWire (non-standard!)
  283. #device fwip # IP over FireWire (RFC 2734,3146)
  284. #device dcons # Dumb console driver
  285. #device dcons_crom # Configuration ROM for dcons
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement