GENERIC64 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. #
  2. # GENERIC -- Generic kernel configuration file for FreeBSD/powerpc
  3. #
  4. # For more information on this file, please read the handbook section on
  5. # Kernel Configuration Files:
  6. #
  7. # https://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
  8. #
  9. # The handbook is also available locally in /usr/share/doc/handbook
  10. # if you've installed the doc distribution, otherwise always see the
  11. # FreeBSD World Wide Web server (https://www.FreeBSD.org/) for the
  12. # latest information.
  13. #
  14. # An exhaustive list of options and more detailed explanations of the
  15. # device lines is also present in the ../../conf/NOTES and NOTES files.
  16. # If you are in doubt as to the purpose or necessity of a line, check first
  17. # in NOTES.
  18. #
  19. # $FreeBSD$
  20. cpu AIM
  21. ident GENERIC
  22. machine powerpc powerpc64
  23. makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
  24. makeoptions WITH_CTF=1
  25. # Platform support
  26. options POWERMAC #NewWorld Apple PowerMacs
  27. options PS3 #Sony Playstation 3
  28. options MAMBO #IBM Mambo Full System Simulator
  29. options QEMU #QEMU processor emulator
  30. options PSERIES #PAPR-compliant systems (e.g. IBM p)
  31. options POWERNV #Non-virtualized OpenPOWER systems
  32. options FDT #Flattened Device Tree
  33. options SCHED_ULE #ULE scheduler
  34. options NUMA #Non-Uniform Memory Architecture support
  35. options PREEMPTION #Enable kernel thread preemption
  36. options VIMAGE # Subsystem virtualization, e.g. VNET
  37. options INET #InterNETworking
  38. options INET6 #IPv6 communications protocols
  39. options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5
  40. options ROUTE_MPATH # Multipath routing support
  41. options TCP_OFFLOAD # TCP offload
  42. options TCP_BLACKBOX # Enhanced TCP event logging
  43. options TCP_HHOOK # hhook(9) framework for TCP
  44. options TCP_RFC7413 # TCP Fast Open
  45. options SCTP_SUPPORT # Allow kldload of SCTP
  46. options FFS #Berkeley Fast Filesystem
  47. options SOFTUPDATES #Enable FFS soft updates support
  48. options UFS_ACL #Support for access control lists
  49. options UFS_DIRHASH #Improve performance on big directories
  50. options UFS_GJOURNAL #Enable gjournal-based UFS journaling
  51. options QUOTA #Enable disk quotas for UFS
  52. options MD_ROOT #MD is a potential root device
  53. options MD_ROOT_MEM #Enable use of initrd as MD root
  54. options NFSCL #Network Filesystem Client
  55. options NFSD #Network Filesystem Server
  56. options NFSLOCKD #Network Lock Manager
  57. options NFS_ROOT #NFS usable as root device
  58. options MSDOSFS #MSDOS Filesystem
  59. options CD9660 #ISO 9660 Filesystem
  60. options PROCFS #Process filesystem (requires PSEUDOFS)
  61. options PSEUDOFS #Pseudo-filesystem framework
  62. options TMPFS #Efficient memory filesystem
  63. options GEOM_PART_APM #Apple Partition Maps.
  64. options GEOM_PART_GPT #GUID Partition Tables.
  65. options GEOM_LABEL #Provides labelization
  66. options COMPAT_FREEBSD32 #Compatible with FreeBSD/powerpc binaries
  67. options COMPAT_FREEBSD5 #Compatible with FreeBSD5
  68. options COMPAT_FREEBSD6 #Compatible with FreeBSD6
  69. options COMPAT_FREEBSD7 #Compatible with FreeBSD7
  70. options COMPAT_FREEBSD9 # Compatible with FreeBSD9
  71. options COMPAT_FREEBSD10 # Compatible with FreeBSD10
  72. options COMPAT_FREEBSD11 # Compatible with FreeBSD11
  73. options COMPAT_FREEBSD12 # Compatible with FreeBSD12
  74. options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
  75. options KTRACE #ktrace(1) syscall trace support
  76. options STACK #stack(9) support
  77. options SYSVSHM #SYSV-style shared memory
  78. options SYSVMSG #SYSV-style message queues
  79. options SYSVSEM #SYSV-style semaphores
  80. options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
  81. options PRINTF_BUFR_SIZE=128 # Prevent printf output being interspersed.
  82. options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
  83. options AUDIT # Security event auditing
  84. options CAPABILITY_MODE # Capsicum capability mode
  85. options CAPABILITIES # Capsicum capabilities
  86. options MAC # TrustedBSD MAC Framework
  87. options KDTRACE_HOOKS # Kernel DTrace hooks
  88. options DDB_CTF # Kernel ELF linker loads CTF data
  89. options INCLUDE_CONFIG_FILE # Include this file in kernel
  90. options RACCT # Resource accounting framework
  91. options RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
  92. options RCTL # Resource limits
  93. # Debugging support. Always need this:
  94. options KDB # Enable kernel debugger support.
  95. options KDB_TRACE # Print a stack trace for a panic.
  96. # For full debugger support use (turn off in stable branch):
  97. options DDB #Support DDB
  98. #options DEADLKRES #Enable the deadlock resolver
  99. options INVARIANTS #Enable calls of extra sanity checking
  100. options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
  101. options WITNESS #Enable checks to detect deadlocks and cycles
  102. options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
  103. options MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
  104. options VERBOSE_SYSINIT=0 # Support debug.verbose_sysinit, off by default
  105. # Kernel dump features.
  106. options EKCD # Support for encrypted kernel dumps
  107. options GZIO # gzip-compressed kernel and user dumps
  108. options ZSTDIO # zstd-compressed kernel and user dumps
  109. options DEBUGNET # debugnet networking
  110. options NETDUMP # netdump(4) client support
  111. # Make an SMP-capable kernel by default
  112. options SMP # Symmetric MultiProcessor Kernel
  113. # CPU frequency control
  114. device cpufreq
  115. # Standard busses
  116. device pci
  117. options PCI_HP # PCI-Express native HotPlug
  118. device agp
  119. # ATA controllers
  120. device ahci # AHCI-compatible SATA controllers
  121. device ata # Legacy ATA/SATA controllers
  122. device mvs # Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA
  123. device siis # SiliconImage SiI3124/SiI3132/SiI3531 SATA
  124. # NVM Express (NVMe) support
  125. device nvme # base NVMe driver
  126. options NVME_USE_NVD=0 # prefer the cam(4) based nda(4) driver
  127. device nvd # expose NVMe namespaces as disks, depends on nvme
  128. # SCSI Controllers
  129. device aacraid # Adaptec by PMC RAID
  130. device ahc # AHA2940 and onboard AIC7xxx devices
  131. options AHC_ALLOW_MEMIO # Attempt to use memory mapped I/O
  132. device isp # Qlogic family
  133. device ispfw # Firmware module for Qlogic host adapters
  134. device mpt # LSI-Logic MPT-Fusion
  135. device mps # LSI-Logic MPT-Fusion 2
  136. device sym # NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D
  137. # ATA/SCSI peripherals
  138. device scbus # SCSI bus (required for ATA/SCSI)
  139. device ch # SCSI media changers
  140. device da # Direct Access (disks)
  141. device sa # Sequential Access (tape etc)
  142. device cd # CD
  143. device pass # Passthrough device (direct ATA/SCSI access)
  144. device ses # Enclosure Service (SES and SAF-TE)
  145. # vt is the default console driver, resembling an SCO console
  146. device vt # Core console driver
  147. device kbdmux
  148. # Serial (COM) ports
  149. device scc
  150. device uart
  151. device uart_z8530
  152. device iflib
  153. # Ethernet hardware
  154. device em # Intel PRO/1000 Gigabit Ethernet Family
  155. device ix # Intel PRO/10GbE PCIE PF Ethernet Family
  156. device ixl # Intel 700 Series Physical Function
  157. device ixv # Intel PRO/10GbE PCIE VF Ethernet Family
  158. device glc # Sony Playstation 3 Ethernet
  159. device llan # IBM pSeries Virtual Ethernet
  160. device cxgbe # Chelsio 10/25G NIC
  161. # PCI Ethernet NICs that use the common MII bus controller code.
  162. device miibus # MII bus support
  163. device bge # Broadcom BCM570xx Gigabit Ethernet
  164. device gem # Sun GEM/Sun ERI/Apple GMAC
  165. device dc # DEC/Intel 21143 and various workalikes
  166. device fxp # Intel EtherExpress PRO/100B (82557, 82558)
  167. device re # RealTek 8139C+/8169/8169S/8110S
  168. device rl # RealTek 8129/8139
  169. # Pseudo devices.
  170. device crypto # core crypto support
  171. device loop # Network loopback
  172. device ether # Ethernet support
  173. device vlan # 802.1Q VLAN support
  174. device tuntap # Packet tunnel.
  175. device md # Memory "disks"
  176. device ofwd # Open Firmware disks
  177. device gif # IPv6 and IPv4 tunneling
  178. device firmware # firmware assist module
  179. # The `bpf' device enables the Berkeley Packet Filter.
  180. # Be aware of the administrative consequences of enabling this!
  181. # Note that 'bpf' is required for DHCP.
  182. device bpf #Berkeley packet filter
  183. # USB support
  184. options USB_DEBUG # enable debug msgs
  185. device uhci # UHCI PCI->USB interface
  186. device ohci # OHCI PCI->USB interface
  187. device ehci # EHCI PCI->USB interface
  188. device xhci # XHCI PCI->USB interface
  189. device usb # USB Bus (required)
  190. device uhid # "Human Interface Devices"
  191. device ukbd # Keyboard
  192. options KBD_INSTALL_CDEV # install a CDEV entry in /dev
  193. device umass # Disks/Mass storage - Requires scbus and da0
  194. device ums # Mouse
  195. # USB Ethernet
  196. device aue # ADMtek USB Ethernet
  197. device axe # ASIX Electronics USB Ethernet
  198. device cdce # Generic USB over Ethernet
  199. device cue # CATC USB Ethernet
  200. device kue # Kawasaki LSI USB Ethernet
  201. # Wireless NIC cards
  202. options IEEE80211_SUPPORT_MESH
  203. # FireWire support
  204. device firewire # FireWire bus code
  205. device sbp # SCSI over FireWire (Requires scbus and da)
  206. device fwe # Ethernet over FireWire (non-standard!)
  207. # Misc
  208. device iicbus # I2C bus code
  209. device iic
  210. device kiic # Keywest I2C
  211. device ad7417 # PowerMac7,2 temperature sensor
  212. device ds1631 # PowerMac11,2 temperature sensor
  213. device ds1775 # PowerMac7,2 temperature sensor
  214. device fcu # Apple Fan Control Unit
  215. device max6690 # PowerMac7,2 temperature sensor
  216. device powermac_nvram # Open Firmware configuration NVRAM
  217. device smu # Apple System Management Unit
  218. device atibl # ATI-based backlight driver for PowerBooks/iBooks
  219. device nvbl # nVidia-based backlight driver for PowerBooks/iBooks
  220. device opalflash # PowerNV embedded flash memory
  221. # ADB support
  222. device adb
  223. device pmu
  224. # Sound support
  225. device sound # Generic sound driver (required)
  226. device snd_ai2s # Apple I2S audio
  227. device snd_hda # Intel High Definition Audio
  228. device snd_uaudio # USB Audio
  229. # Netmap provides direct access to TX/RX rings on supported NICs
  230. device netmap # netmap(4) support
  231. # evdev interface
  232. options EVDEV_SUPPORT # evdev support in legacy drivers
  233. device evdev # input event device support
  234. device uinput # install /dev/uinput cdev
  235. # VirtIO support
  236. device virtio # Generic VirtIO bus (required)
  237. device virtio_pci # VirtIO PCI device
  238. device vtnet # VirtIO Ethernet device
  239. device virtio_blk # VirtIO Block device
  240. device virtio_scsi # VirtIO SCSI device
  241. device virtio_balloon # VirtIO Memory Balloon device
  242. # HID support
  243. options HID_DEBUG # enable debug msgs
  244. device hid # Generic HID support