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 OEA 22ident GENERIC 23 24#To statically compile in device wiring instead of /boot/device.hints 25#hints "GENERIC.hints" 26 27makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols 28 29# Platform support 30options POWERMAC #NewWorld Apple PowerMacs 31options PSIM #GDB PSIM ppc simulator 32 33options SCHED_4BSD #4BSD scheduler 34options INET #InterNETworking 35options INET6 #IPv6 communications protocols 36options FFS #Berkeley Fast Filesystem 37options SOFTUPDATES #Enable FFS soft updates support 38options UFS_ACL #Support for access control lists 39options UFS_DIRHASH #Improve performance on big directories 40options MD_ROOT #MD is a potential root device 41options NFSCLIENT #Network Filesystem Client 42options NFSSERVER #Network Filesystem Server 43options NFS_ROOT #NFS usable as root device 44options MSDOSFS #MSDOS Filesystem 45options CD9660 #ISO 9660 Filesystem 46options PROCFS #Process filesystem (requires PSEUDOFS) 47options PSEUDOFS #Pseudo-filesystem framework 48options GEOM_PART_GPT #GUID Partition Tables. 49options GEOM_LABEL #Provides labelization 50options COMPAT_43TTY #BSD 4.3 TTY compat [KEEP THIS!] 51options COMPAT_FREEBSD4 #Keep this for a while 52options COMPAT_FREEBSD5 #Compatible with FreeBSD5 53options COMPAT_FREEBSD6 #Compatible with FreeBSD6 54options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI 55options KTRACE #ktrace(1) syscall trace support 56options SYSVSHM #SYSV-style shared memory 57options SYSVMSG #SYSV-style message queues 58options SYSVSEM #SYSV-style semaphores 59options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions 60 61# Debugging for use in -current 62options KDB #Enable the kernel debugger 63options DDB #Support DDB 64options INVARIANTS #Enable calls of extra sanity checking 65options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS 66options WITNESS #Enable checks to detect deadlocks and cycles 67 68# To make an SMP kernel, the next line is needed 69#options SMP # Symmetric MultiProcessor Kernel 70 71# Standard busses 72device pci 73 74# ATA and ATAPI devices 75device ata 76device atadisk # ATA disk drives 77device atapicd # ATAPI CDROM drives 78#device atapifd # ATAPI floppy drives 79#device atapist # ATAPI tape drives 80 81# SCSI peripherals 82device scbus # SCSI bus (required for SCSI) 83device da # Direct Access (disks) 84device sa # Sequential Access (tape etc) 85device cd # CD 86device pass # Passthrough device (direct SCSI access) 87 88# syscons is the default console driver, resembling an SCO console 89device sc 90device kbdmux 91options SC_OFWFB # OFW frame buffer 92options SC_DFLT_FONT # compile font in 93makeoptions SC_DFLT_FONT=cp437 94 95# Serial (COM) ports 96device scc 97device uart 98 99# PCI Ethernet NICs that use the common MII bus controller code. 100device miibus # MII bus support 101device bge # Broadcom BCM570xx Gigabit Ethernet 102device gem # Sun GEM/Sun ERI/Apple GMAC 103device dc # DEC/Intel 21143 and various workalikes 104device fxp # Intel EtherExpress PRO/100B (82557, 82558) 105 106# Pseudo devices. 107device loop # Network loopback 108device random # Entropy device 109device ether # Ethernet support 110device sl # Kernel SLIP 111device ppp # Kernel PPP 112device tun # Packet tunnel. 113device pty # Pseudo-ttys (telnet etc) 114device md # Memory "disks" 115device ofwd # Open Firmware disks 116device gif # IPv6 and IPv4 tunneling 117device faith # IPv6-to-IPv4 relaying/(translation) 118 119# The `bpf' device enables the Berkeley Packet Filter. 120# Be aware of the administrative consequences of enabling this! 121# Note that 'bpf' is required for DHCP. 122device bpf #Berkeley packet filter 123 124# USB support 125device uhci # UHCI PCI->USB interface 126device ohci # OHCI PCI->USB interface 127device ehci # EHCI PCI->USB interface 128device usb # USB Bus (required) 129device ugen # Generic 130device uhid # "Human Interface Devices" 131device ukbd # Keyboard 132options KBD_INSTALL_CDEV # install a CDEV entry in /dev 133device ulpt # Printer 134device umass # Disks/Mass storage - Requires scbus and da0 135device ums # Mouse 136device urio # Diamond Rio 500 MP3 player 137device uscanner # Scanners 138# USB Ethernet 139device aue # ADMtek USB Ethernet 140device axe # ASIX Electronics USB Ethernet 141device cdce # Generic USB over Ethernet 142device cue # CATC USB Ethernet 143device kue # Kawasaki LSI USB Ethernet 144 145# FireWire support 146device firewire # FireWire bus code 147device sbp # SCSI over FireWire (Requires scbus and da) 148device fwe # Ethernet over FireWire (non-standard!) 149 150# Misc 151device powermac_nvram # Open Firmware configuration NVRAM 152 153options KTR 154options KTR_COMPILE=0xffffffff 155#options KTR_MASK=KTR_SIG 156options KTR_VERBOSE 157