166292dbfSNathan Whitehorn# 266292dbfSNathan Whitehorn# GENERIC -- Generic kernel configuration file for FreeBSD/powerpc 366292dbfSNathan Whitehorn# 466292dbfSNathan Whitehorn# For more information on this file, please read the handbook section on 566292dbfSNathan Whitehorn# Kernel Configuration Files: 666292dbfSNathan Whitehorn# 766292dbfSNathan Whitehorn# http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html 866292dbfSNathan Whitehorn# 966292dbfSNathan Whitehorn# The handbook is also available locally in /usr/share/doc/handbook 1066292dbfSNathan Whitehorn# if you've installed the doc distribution, otherwise always see the 1166292dbfSNathan Whitehorn# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the 1266292dbfSNathan Whitehorn# latest information. 1366292dbfSNathan Whitehorn# 1466292dbfSNathan Whitehorn# An exhaustive list of options and more detailed explanations of the 1566292dbfSNathan Whitehorn# device lines is also present in the ../../conf/NOTES and NOTES files. 1666292dbfSNathan Whitehorn# If you are in doubt as to the purpose or necessity of a line, check first 1766292dbfSNathan Whitehorn# in NOTES. 1866292dbfSNathan Whitehorn# 1966292dbfSNathan Whitehorn# $FreeBSD$ 2066292dbfSNathan Whitehorn 2166292dbfSNathan Whitehorncpu AIM 2266292dbfSNathan Whitehornident GENERIC 2366292dbfSNathan Whitehorn 2466292dbfSNathan Whitehornmachine powerpc powerpc64 2566292dbfSNathan Whitehorn 2666292dbfSNathan Whitehornmakeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols 2766292dbfSNathan Whitehorn 2866292dbfSNathan Whitehorn# Platform support 2966292dbfSNathan Whitehornoptions POWERMAC #NewWorld Apple PowerMacs 3066292dbfSNathan Whitehorn 3166292dbfSNathan Whitehornoptions SCHED_ULE #ULE scheduler 3266292dbfSNathan Whitehornoptions INET #InterNETworking 3366292dbfSNathan Whitehornoptions INET6 #IPv6 communications protocols 3466292dbfSNathan Whitehornoptions SCTP #Stream Control Transmission Protocol 3566292dbfSNathan Whitehornoptions FFS #Berkeley Fast Filesystem 3666292dbfSNathan Whitehornoptions SOFTUPDATES #Enable FFS soft updates support 3766292dbfSNathan Whitehornoptions UFS_ACL #Support for access control lists 3866292dbfSNathan Whitehornoptions UFS_DIRHASH #Improve performance on big directories 3966292dbfSNathan Whitehornoptions UFS_GJOURNAL #Enable gjournal-based UFS journaling 4066292dbfSNathan Whitehornoptions MD_ROOT #MD is a potential root device 4166292dbfSNathan Whitehornoptions NFSCLIENT #Network Filesystem Client 4266292dbfSNathan Whitehornoptions NFSSERVER #Network Filesystem Server 4366292dbfSNathan Whitehornoptions NFSLOCKD #Network Lock Manager 4466292dbfSNathan Whitehornoptions NFS_ROOT #NFS usable as root device 4566292dbfSNathan Whitehornoptions MSDOSFS #MSDOS Filesystem 4666292dbfSNathan Whitehornoptions CD9660 #ISO 9660 Filesystem 4766292dbfSNathan Whitehornoptions PROCFS #Process filesystem (requires PSEUDOFS) 4866292dbfSNathan Whitehornoptions PSEUDOFS #Pseudo-filesystem framework 4966292dbfSNathan Whitehornoptions GEOM_PART_GPT #GUID Partition Tables. 5066292dbfSNathan Whitehornoptions GEOM_LABEL #Provides labelization 5166292dbfSNathan Whitehornoptions COMPAT_FREEBSD32 #Compatible with FreeBSD/powerpc binaries 5266292dbfSNathan Whitehornoptions COMPAT_FREEBSD5 #Compatible with FreeBSD5 5366292dbfSNathan Whitehornoptions COMPAT_FREEBSD6 #Compatible with FreeBSD6 5466292dbfSNathan Whitehornoptions COMPAT_FREEBSD7 #Compatible with FreeBSD7 5566292dbfSNathan Whitehornoptions SCSI_DELAY=5000 #Delay (in ms) before probing SCSI 5666292dbfSNathan Whitehornoptions KTRACE #ktrace(1) syscall trace support 5766292dbfSNathan Whitehornoptions STACK #stack(9) support 5866292dbfSNathan Whitehornoptions SYSVSHM #SYSV-style shared memory 5966292dbfSNathan Whitehornoptions SYSVMSG #SYSV-style message queues 6066292dbfSNathan Whitehornoptions SYSVSEM #SYSV-style semaphores 6166292dbfSNathan Whitehornoptions P1003_1B_SEMAPHORES # POSIX-style semaphores 6266292dbfSNathan Whitehornoptions _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions 6366292dbfSNathan Whitehornoptions HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4) 6466292dbfSNathan Whitehornoptions AUDIT # Security event auditing 6566292dbfSNathan Whitehornoptions MAC # TrustedBSD MAC Framework 6666292dbfSNathan Whitehornoptions INCLUDE_CONFIG_FILE # Include this file in kernel 6766292dbfSNathan Whitehorn 6866292dbfSNathan Whitehorn# Debugging for use in -current 6966292dbfSNathan Whitehornoptions KDB #Enable the kernel debugger 7066292dbfSNathan Whitehornoptions DDB #Support DDB 7166292dbfSNathan Whitehorn#options DEADLKRES #Enable the deadlock resolver 7266292dbfSNathan Whitehornoptions INVARIANTS #Enable calls of extra sanity checking 7366292dbfSNathan Whitehornoptions INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS 7466292dbfSNathan Whitehornoptions WITNESS #Enable checks to detect deadlocks and cycles 7566292dbfSNathan Whitehornoptions WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed 76*f6daba83SMatthew D Flemingoptions MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones 7766292dbfSNathan Whitehorn 7866292dbfSNathan Whitehorn# To make an SMP kernel, the next line is needed 7966292dbfSNathan Whitehorn#options SMP # Symmetric MultiProcessor Kernel 8066292dbfSNathan Whitehorn 8166292dbfSNathan Whitehorn# CPU frequency control 8266292dbfSNathan Whitehorndevice cpufreq 8366292dbfSNathan Whitehorn 8466292dbfSNathan Whitehorn# Standard busses 8566292dbfSNathan Whitehorndevice pci 8666292dbfSNathan Whitehorn 8766292dbfSNathan Whitehorn# ATA and ATAPI devices 8866292dbfSNathan Whitehorndevice ata 8966292dbfSNathan Whitehorndevice atadisk # ATA disk drives 9066292dbfSNathan Whitehorndevice atapicd # ATAPI CDROM drives 9166292dbfSNathan Whitehorn#device atapifd # ATAPI floppy drives 9266292dbfSNathan Whitehorn#device atapist # ATAPI tape drives 9366292dbfSNathan Whitehorn 9466292dbfSNathan Whitehorn# SCSI Controllers 9566292dbfSNathan Whitehorndevice ahc # AHA2940 and onboard AIC7xxx devices 9666292dbfSNathan Whitehornoptions AHC_ALLOW_MEMIO # Attempt to use memory mapped I/O 9766292dbfSNathan Whitehornoptions AHC_REG_PRETTY_PRINT # Print register bitfields in debug 9866292dbfSNathan Whitehorn # output. Adds ~128k to driver. 9966292dbfSNathan Whitehorndevice isp # Qlogic family 10066292dbfSNathan Whitehorndevice ispfw # Firmware module for Qlogic host adapters 10166292dbfSNathan Whitehorndevice mpt # LSI-Logic MPT-Fusion 10266292dbfSNathan Whitehorndevice sym # NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D 10366292dbfSNathan Whitehorn 10466292dbfSNathan Whitehorn# SCSI peripherals 10566292dbfSNathan Whitehorndevice scbus # SCSI bus (required for SCSI) 10666292dbfSNathan Whitehorndevice da # Direct Access (disks) 10766292dbfSNathan Whitehorndevice sa # Sequential Access (tape etc) 10866292dbfSNathan Whitehorndevice cd # CD 10966292dbfSNathan Whitehorndevice pass # Passthrough device (direct SCSI access) 11066292dbfSNathan Whitehorn 11166292dbfSNathan Whitehorn# syscons is the default console driver, resembling an SCO console 11266292dbfSNathan Whitehorndevice sc 11366292dbfSNathan Whitehorndevice kbdmux 11466292dbfSNathan Whitehornoptions SC_OFWFB # OFW frame buffer 11566292dbfSNathan Whitehornoptions SC_DFLT_FONT # compile font in 11666292dbfSNathan Whitehornmakeoptions SC_DFLT_FONT=cp437 11766292dbfSNathan Whitehorn 11866292dbfSNathan Whitehorn# Serial (COM) ports 11966292dbfSNathan Whitehorndevice scc 12066292dbfSNathan Whitehorndevice uart 12166292dbfSNathan Whitehorn 12266292dbfSNathan Whitehorn# PCI Ethernet NICs that use the common MII bus controller code. 12366292dbfSNathan Whitehorndevice miibus # MII bus support 12466292dbfSNathan Whitehorndevice bge # Broadcom BCM570xx Gigabit Ethernet 12566292dbfSNathan Whitehorndevice gem # Sun GEM/Sun ERI/Apple GMAC 12666292dbfSNathan Whitehorndevice dc # DEC/Intel 21143 and various workalikes 12766292dbfSNathan Whitehorndevice fxp # Intel EtherExpress PRO/100B (82557, 82558) 12866292dbfSNathan Whitehorn 12966292dbfSNathan Whitehorn# Pseudo devices. 13066292dbfSNathan Whitehorndevice loop # Network loopback 13166292dbfSNathan Whitehorndevice random # Entropy device 13266292dbfSNathan Whitehorndevice ether # Ethernet support 13366292dbfSNathan Whitehorndevice vlan # 802.1Q VLAN support 13466292dbfSNathan Whitehorndevice tun # Packet tunnel. 13566292dbfSNathan Whitehorndevice pty # BSD-style compatibility pseudo ttys 13666292dbfSNathan Whitehorndevice md # Memory "disks" 13766292dbfSNathan Whitehorndevice ofwd # Open Firmware disks 13866292dbfSNathan Whitehorndevice gif # IPv6 and IPv4 tunneling 13966292dbfSNathan Whitehorndevice faith # IPv6-to-IPv4 relaying/(translation) 14066292dbfSNathan Whitehorndevice firmware # firmware assist module 14166292dbfSNathan Whitehorn 14266292dbfSNathan Whitehorn# The `bpf' device enables the Berkeley Packet Filter. 14366292dbfSNathan Whitehorn# Be aware of the administrative consequences of enabling this! 14466292dbfSNathan Whitehorn# Note that 'bpf' is required for DHCP. 14566292dbfSNathan Whitehorndevice bpf #Berkeley packet filter 14666292dbfSNathan Whitehorn 14766292dbfSNathan Whitehorn# USB support 14866292dbfSNathan Whitehornoptions USB_DEBUG # enable debug msgs 14966292dbfSNathan Whitehorndevice uhci # UHCI PCI->USB interface 15066292dbfSNathan Whitehorndevice ohci # OHCI PCI->USB interface 15166292dbfSNathan Whitehorndevice ehci # EHCI PCI->USB interface 15266292dbfSNathan Whitehorndevice usb # USB Bus (required) 15366292dbfSNathan Whitehorndevice uhid # "Human Interface Devices" 15466292dbfSNathan Whitehorndevice ukbd # Keyboard 15566292dbfSNathan Whitehornoptions KBD_INSTALL_CDEV # install a CDEV entry in /dev 15666292dbfSNathan Whitehorndevice ulpt # Printer 15766292dbfSNathan Whitehorndevice umass # Disks/Mass storage - Requires scbus and da0 15866292dbfSNathan Whitehorndevice ums # Mouse 15966292dbfSNathan Whitehorndevice urio # Diamond Rio 500 MP3 player 16066292dbfSNathan Whitehorn# USB Ethernet 16166292dbfSNathan Whitehorndevice aue # ADMtek USB Ethernet 16266292dbfSNathan Whitehorndevice axe # ASIX Electronics USB Ethernet 16366292dbfSNathan Whitehorndevice cdce # Generic USB over Ethernet 16466292dbfSNathan Whitehorndevice cue # CATC USB Ethernet 16566292dbfSNathan Whitehorndevice kue # Kawasaki LSI USB Ethernet 16666292dbfSNathan Whitehorn 16766292dbfSNathan Whitehorn# FireWire support 16866292dbfSNathan Whitehorndevice firewire # FireWire bus code 16966292dbfSNathan Whitehorndevice sbp # SCSI over FireWire (Requires scbus and da) 17066292dbfSNathan Whitehorndevice fwe # Ethernet over FireWire (non-standard!) 17166292dbfSNathan Whitehorn 17266292dbfSNathan Whitehorn# Misc 17366292dbfSNathan Whitehorndevice powermac_nvram # Open Firmware configuration NVRAM 17466292dbfSNathan Whitehorndevice smu # Apple System Management Unit 17566292dbfSNathan Whitehorn 17666292dbfSNathan Whitehorn# ADB support 17766292dbfSNathan Whitehorndevice adb 17866292dbfSNathan Whitehorndevice pmu 17966292dbfSNathan Whitehorn 18066292dbfSNathan Whitehorn# Powermac I2C support 18166292dbfSNathan Whitehorndevice iicbus # I2C bus code 18266292dbfSNathan Whitehorndevice kiic # Keywest I2C 18366292dbfSNathan Whitehorn 184