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# http://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 (http://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 21cpu AIM 22ident GENERIC 23 24machine powerpc powerpc 25 26makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols 27makeoptions WITH_CTF=1 28 29# Platform support 30options POWERMAC #NewWorld Apple PowerMacs 31options PSIM #GDB PSIM ppc simulator 32options MAMBO #IBM Mambo Full System Simulator 33options PSERIES #PAPR-compliant systems 34 35options SCHED_ULE #ULE scheduler 36options PREEMPTION #Enable kernel thread preemption 37options INET #InterNETworking 38options INET6 #IPv6 communications protocols 39options SCTP #Stream Control Transmission Protocol 40options FFS #Berkeley Fast Filesystem 41options SOFTUPDATES #Enable FFS soft updates support 42options UFS_ACL #Support for access control lists 43options UFS_DIRHASH #Improve performance on big directories 44options UFS_GJOURNAL #Enable gjournal-based UFS journaling 45options QUOTA #Enable disk quotas for UFS 46options MD_ROOT #MD is a potential root device 47options NFSCL #New Network Filesystem Client 48options NFSD #New Network Filesystem Server 49options NFSLOCKD #Network Lock Manager 50options NFS_ROOT #NFS usable as root device 51options MSDOSFS #MSDOS Filesystem 52options CD9660 #ISO 9660 Filesystem 53options PROCFS #Process filesystem (requires PSEUDOFS) 54options PSEUDOFS #Pseudo-filesystem framework 55options GEOM_PART_APM #Apple Partition Maps. 56options GEOM_PART_GPT #GUID Partition Tables. 57options GEOM_LABEL #Provides labelization 58options COMPAT_FREEBSD4 #Keep this for a while 59options COMPAT_FREEBSD5 #Compatible with FreeBSD5 60options COMPAT_FREEBSD6 #Compatible with FreeBSD6 61options COMPAT_FREEBSD7 #Compatible with FreeBSD7 62options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI 63options KTRACE #ktrace(1) syscall trace support 64options STACK #stack(9) support 65options SYSVSHM #SYSV-style shared memory 66options SYSVMSG #SYSV-style message queues 67options SYSVSEM #SYSV-style semaphores 68options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions 69options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4) 70options AUDIT # Security event auditing 71options CAPABILITY_MODE # Capsicum capability mode 72options CAPABILITIES # Capsicum capabilities 73options MAC # TrustedBSD MAC Framework 74options KDTRACE_HOOKS # Kernel DTrace hooks 75options DDB_CTF # Kernel ELF linker loads CTF data 76options INCLUDE_CONFIG_FILE # Include this file in kernel 77 78# Debugging support. Always need this: 79options KDB # Enable kernel debugger support. 80options KDB_TRACE # Print a stack trace for a panic. 81# For full debugger support use (turn off in stable branch): 82options DDB #Support DDB 83#options DEADLKRES #Enable the deadlock resolver 84options INVARIANTS #Enable calls of extra sanity checking 85options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS 86options WITNESS #Enable checks to detect deadlocks and cycles 87options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed 88options MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones 89 90# Make an SMP-capable kernel by default 91options SMP # Symmetric MultiProcessor Kernel 92 93# CPU frequency control 94device cpufreq 95 96# Standard busses 97device pci 98device agp 99 100# ATA controllers 101device ahci # AHCI-compatible SATA controllers 102device ata # Legacy ATA/SATA controllers 103device mvs # Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA 104device siis # SiliconImage SiI3124/SiI3132/SiI3531 SATA 105 106# SCSI Controllers 107device ahc # AHA2940 and onboard AIC7xxx devices 108options AHC_ALLOW_MEMIO # Attempt to use memory mapped I/O 109options AHC_REG_PRETTY_PRINT # Print register bitfields in debug 110 # output. Adds ~128k to driver. 111device isp # Qlogic family 112device ispfw # Firmware module for Qlogic host adapters 113device mpt # LSI-Logic MPT-Fusion 114device mps # LSI-Logic MPT-Fusion 2 115device sym # NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D 116 117# ATA/SCSI peripherals 118device scbus # SCSI bus (required for ATA/SCSI) 119device da # Direct Access (disks) 120device sa # Sequential Access (tape etc) 121device cd # CD 122device pass # Passthrough device (direct ATA/SCSI access) 123 124# vt is the default console driver, resembling an SCO console 125device vt # Generic console driver (pulls in OF FB) 126device kbdmux 127 128# Serial (COM) ports 129device scc 130device uart 131device uart_z8530 132 133# FireWire support 134device firewire # FireWire bus code 135device sbp # SCSI over FireWire (Requires scbus and da) 136device fwe # Ethernet over FireWire (non-standard!) 137 138# PCI Ethernet NICs that use the common MII bus controller code. 139device miibus # MII bus support 140device bge # Broadcom BCM570xx Gigabit Ethernet 141device bm # Apple BMAC Ethernet 142device gem # Sun GEM/Sun ERI/Apple GMAC 143device dc # DEC/Intel 21143 and various workalikes 144device fxp # Intel EtherExpress PRO/100B (82557, 82558) 145 146# Pseudo devices. 147device loop # Network loopback 148device random # Entropy device 149device ether # Ethernet support 150device vlan # 802.1Q VLAN support 151device tun # Packet tunnel. 152device md # Memory "disks" 153device ofwd # Open Firmware disks 154device gif # IPv6 and IPv4 tunneling 155device faith # IPv6-to-IPv4 relaying/(translation) 156device firmware # firmware assist module 157 158# The `bpf' device enables the Berkeley Packet Filter. 159# Be aware of the administrative consequences of enabling this! 160# Note that 'bpf' is required for DHCP. 161device bpf #Berkeley packet filter 162 163# USB support 164options USB_DEBUG # enable debug msgs 165device uhci # UHCI PCI->USB interface 166device ohci # OHCI PCI->USB interface 167device ehci # EHCI PCI->USB interface 168device usb # USB Bus (required) 169device uhid # "Human Interface Devices" 170device ukbd # Keyboard 171options KBD_INSTALL_CDEV # install a CDEV entry in /dev 172device ulpt # Printer 173device umass # Disks/Mass storage - Requires scbus and da0 174device ums # Mouse 175device atp # Apple USB touchpad 176device urio # Diamond Rio 500 MP3 player 177# USB Ethernet 178device aue # ADMtek USB Ethernet 179device axe # ASIX Electronics USB Ethernet 180device cdce # Generic USB over Ethernet 181device cue # CATC USB Ethernet 182device kue # Kawasaki LSI USB Ethernet 183 184# Wireless NIC cards 185options IEEE80211_SUPPORT_MESH 186options AH_SUPPORT_AR5416 187 188# Misc 189device iicbus # I2C bus code 190device kiic # Keywest I2C 191device ad7417 # PowerMac7,2 temperature sensor 192device adt746x # PowerBook5,8 temperature sensor 193device ds1631 # PowerMac11,2 temperature sensor 194device ds1775 # PowerMac7,2 temperature sensor 195device fcu # Apple Fan Control Unit 196device max6690 # PowerMac7,2 temperature sensor 197device powermac_nvram # Open Firmware configuration NVRAM 198device smu # Apple System Management Unit 199device windtunnel # Apple G4 MDD fan controller 200device atibl # ATI-based backlight driver for PowerBooks/iBooks 201device nvbl # nVidia-based backlight driver for PowerBooks/iBooks 202 203# ADB support 204device adb 205device cuda 206device pmu 207 208# Sound support 209device sound # Generic sound driver (required) 210device snd_ai2s # Apple I2S audio 211device snd_davbus # Apple DAVBUS audio 212device snd_uaudio # USB Audio 213 214