GENERIC revision 1.132
1# $NetBSD: GENERIC,v 1.132 2010/12/10 21:27:21 phx Exp $ 2# 3# GENERIC machine description file 4# 5# This machine description file is used to generate the default NetBSD 6# kernel. The generic kernel does not include all options, subsystems 7# and device drivers, but should be useful for most applications. 8# 9# The machine description file can be customised for your specific 10# machine to reduce the kernel size and improve its performance. 11# 12# For further information on compiling NetBSD kernels, see the config(8) 13# man page. 14# 15# For further information on hardware support for this architecture, see 16# the intro(4) man page. For further information about kernel options 17# for this architecture, see the options(4) man page. For an explanation 18# of each device driver in this file see the section 4 man page for the 19# device. 20 21include "arch/ofppc/conf/std.ofppc" 22 23options INCLUDE_CONFIG_FILE # embed config file in kernel binary 24 25#ident "GENERIC-$Revision: 1.132 $" 26 27maxusers 32 28 29options PIC_OPENPIC 30options PIC_DISTOPENPIC 31options PIC_I8259 32#options PIC_PREPIVR 33 34# various hacks due to bugs in Openfirmware implementation 35options FIRMWORKSBUGS 36 37# Standard system options 38options INSECURE # disable kernel security checks 39#options NTP # NTP phase/frequency locked loop 40options KTRACE # system call tracing via ktrace(1) 41 42options SYSVMSG # System V message queues 43options SYSVSEM # System V semaphores 44options SYSVSHM # System V shared memory 45options P1003_1B_SEMAPHORE # p1003.1b semaphore support 46 47 48options USERCONF # userconf(4) support 49#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 50options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 51 52# Diagnostic/debugging support options 53#options DIAGNOSTIC # cheap kernel consistency checks 54#options DEBUG # expensive debugging checks/support 55#options KMEMSTATS # kernel memory statistics (vmstat -m) 56options DDB # in-kernel debugger 57options DDB_HISTORY_SIZE=512 # enable history editing in DDB 58options DDB_VERBOSE_HELP 59options TRAP_PANICWAIT 60 61makeoptions DEBUG="-g" # compile full symbol table 62 63# Compatibility option 64options COMPAT_09 # NetBSD 0.9, 65options COMPAT_10 # NetBSD 1.0, 66options COMPAT_11 # NetBSD 1.1, 67options COMPAT_12 # NetBSD 1.2, 68options COMPAT_13 # NetBSD 1.3, 69options COMPAT_14 # NetBSD 1.4, 70options COMPAT_15 # NetBSD 1.5, 71options COMPAT_16 # NetBSD 1.6, 72options COMPAT_20 # NetBSD 2.0, 73options COMPAT_30 # NetBSD 3.0 compatibility. 74options COMPAT_40 # NetBSD 4.0 compatibility. 75options COMPAT_50 # NetBSD 5.0 compatibility. 76options COMPAT_43 # and 4.3BSD 77options COMPAT_386BSD_MBRPART # recognize old partition ID 78#options COMPAT_LINUX # Linux binary compatibility 79#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 80options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 81 82# File systems 83file-system FFS # UFS 84file-system EXT2FS # second extended file system (linux) 85file-system LFS # log-structured file system 86file-system MFS # memory file system 87file-system NFS # Network file System client 88file-system CD9660 # ISO 9660 + Rock Ridge file system 89file-system MSDOSFS # MS-DOS file system 90file-system ADOSFS # AmigaDOS file system 91file-system FDESC # /dev/fd 92file-system KERNFS # /kern 93file-system NULLFS # loopback file system 94file-system OVERLAY # overlay file system 95file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs) 96file-system PROCFS # /proc 97file-system UMAPFS # NULLFS + uid and gid remapping 98file-system UNION # union file system 99file-system NTFS # Windows NT file system 100file-system PTYFS # /dev/pts/N support 101file-system TMPFS # Efficient memory file-system 102#file-system UDF # experimental - OSTA UDF CD/DVD file-system 103 104# File system options 105options QUOTA # UFS quotas 106options FFS_EI # FFS Endian Independent support 107options WAPBL # File system journaling support - Experimental 108#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 109options NFSSERVER # Network File System server 110#options FFS_NO_SNAPSHOT # No FFS snapshot support 111#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 112 # immutable) behave as system flags. 113 114options NFS_BOOT_DHCP # Support DHCP NFS root 115 116# Networking options 117#options GATEWAY # packet forwarding 118options INET # IP + ICMP + TCP + UDP 119options INET6 # IPV6 120#options IPSEC # IP security 121#options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 122#options IPSEC_NAT_T # IPsec NAT traversal (NAT-T) 123#options IPSEC_DEBUG # debug for IP security 124#options MROUTING # IP multicast routing 125#options PIM # Protocol Independent Multicast 126#options ISO,TPIP # OSI 127#options EON # OSI tunneling over IP 128#options NETATALK # AppleTalk networking protocols 129options PPP_BSDCOMP # BSD-Compress compression support for PPP 130options PPP_DEFLATE # Deflate compression support for PPP 131options PPP_FILTER # Active filter support for PPP (requires BPF) 132options PFIL_HOOKS # pfil(9) packet filter hooks 133options IPFILTER_LOG # ipmon(8) log support 134options IPFILTER_LOOKUP # ippool(8) support 135options IPFILTER_COMPAT # Compat for IP-Filter 136#options IPFILTER_DEFAULT_BLOCK # block all packets by default 137#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 138 139#options ALTQ # Manipulate network interfaces' output queues 140#options ALTQ_BLUE # Stochastic Fair Blue 141#options ALTQ_CBQ # Class-Based Queueing 142#options ALTQ_CDNR # Diffserv Traffic Conditioner 143#options ALTQ_FIFOQ # First-In First-Out Queue 144#options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 145#options ALTQ_HFSC # Hierarchical Fair Service Curve 146#options ALTQ_LOCALQ # Local queueing discipline 147#options ALTQ_PRIQ # Priority Queueing 148#options ALTQ_RED # Random Early Detection 149#options ALTQ_RIO # RED with IN/OUT 150#options ALTQ_WFQ # Weighted Fair Queueing 151 152# These options enable verbose messages for several subsystems. 153# Warning, these may compile large string tables into the kernel! 154options MIIVERBOSE # verbose PHY autoconfig messages 155options PCIVERBOSE # verbose PCI device autoconfig messages 156#options PCI_CONFIG_DUMP # verbosely dump PCI config space 157options SCSIVERBOSE # human readable SCSI error messages 158options USBVERBOSE # verbose USB device autoconfig messages 159 160options WSEMUL_VT100 161options WS_DEFAULT_FG=WSCOL_BLACK 162options WS_DEFAULT_BG=WSCOL_LIGHT_WHITE 163options WS_KERNEL_FG=WSCOL_GREEN 164options WS_KERNEL_BG=WSCOL_LIGHT_WHITE 165#options FONT_GALLANT12x22 166options FONT_BOLD8x16 167 168# Kernel root file system and dump configuration 169config netbsd root on ? type ? 170 171# 172# Device configuration 173# 174 175mainbus* at root 176 177# CPUs 178cpu* at mainbus? 179 180# Generic OpenFirmware console support 181rtas* at mainbus? 182 183gt* at mainbus? # Marvell MV64361 Discovery II 184mvgbec* at gt? offset ? # Gigabit Ethernet 185mvgbe0 at mvgbec? port 1 irq 9 186 187# PCI root nodes 188ofwpci* at mainbus? 189pci* at ofwpci? bus ? 190gtpci* at gt? unit ? 191pci* at gtpci? bus ? 192 193# PCI bridges 194pchb* at pci? dev ? function ? 195ppb* at pci? dev ? function ? 196pcib* at pci? dev ? function ? 197 198# ISA bus support 199isa* at pcib? 200 201# Console Devices 202genfb* at pci? dev ? function ? 203#radeonfb* at pci? dev ? function ? 204pckbc0 at isa? # pc keyboard controller 205pckbd* at pckbc? # PC keyboard 206pms* at pckbc? # PS/2 mouse for wsmouse 207#wscons stuff 208wskbd* at pckbd? console ? 209wsmouse* at pms? mux 0 210# make sure the console display is always wsdisplay0 XXX Why? 211wsdisplay0 at wsemuldisplaydev? console 1 212wsdisplay* at wsemuldisplaydev? 213 214attimer0 at isa? # AT Timer 215pcppi0 at isa? # PC prog. periph. interface 216# FIX ISABEEP LATER 217 218# VIA VT82C686A/VT8231 Hardware Monitor and Power Management Timer 219viaenv* at pci? dev ? function ? 220 221# Serial Devices 222# ISA serial interfaces 223com0 at isa? port 0x3f8 irq 4 # standard PC serial ports 224com1 at isa? port 0x2f8 irq 3 225 226# Parallel Printer Interfaces 227# ISA parallel printer interfaces 228lpt0 at isa? port 0x3bc irq 7 # standard PC parallel ports 229 230# ISA floppy 231fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers 232fd* at fdc? drive ? # the drives themselves 233 234# SCSI Controllers and Devices 235siop* at pci? dev ? function ? # Symbios 53c8xx SCSI 236esiop* at pci? dev ? function ? # Symbios 53c875 SCSI and newer 237 238# SCSI bus support 239scsibus* at siop? 240scsibus* at esiop? 241scsibus* at umass? 242scsibus* at sbp? 243 244# SCSI devices 245sd* at scsibus? target ? lun ? # SCSI disk drives 246st* at scsibus? target ? lun ? # SCSI tape drives 247cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 248#ch* at scsibus? target ? lun ? # SCSI autochangers 249#ss* at scsibus? target ? lun ? # SCSI scanners 250#uk* at scsibus? target ? lun ? # SCSI unknown 251 252# IDE and related devices 253# PCI IDE controllers 254pciide* at pci? dev ? function ? flags 0x0000 255viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers 256 257# ATA (IDE) bus support 258atabus* at ata? 259 260# IDE drives 261# Flags are used only with controllers that support DMA operations 262# and mode settings (e.g. some pciide controllers) 263# The lowest order four bits (rightmost digit) of the flags define the PIO 264# mode to use, the next set of four bits the DMA mode and the third set the 265# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode 266# to use, and the last bit must be 1 for this setting to be used. 267# For DMA and UDMA, 0xf (1111) means 'disable'. 268# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'. 269# (0xc=1100, 0xa=1010, 0xf=1111) 270# 0x0000 means "use whatever the drive claims to support". 271wd* at atabus? drive ? flags 0x0000 272 273# ATAPI bus support 274atapibus* at atapi? 275 276# ATAPI devices 277# flags have the same meaning as for IDE drives. 278cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives 279sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 280uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown 281 282# Network Interfaces 283ep* at pci? dev ? function ? # 3Com 3c59x 284ex* at pci? dev ? function ? # 3Com 3c90x[BC] 285fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B 286ne* at pci? dev ? function ? # NE2000-compatible Ethernet 287pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet 288re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S 289rtk* at pci? dev ? function ? # Realtek 8129/8139 290sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet 291tlp* at pci? dev ? function ? # DECchip 21x4x and clones 292vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 293 294# MII/PHY support 295acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs 296amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs 297bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs 298brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs 299ciphy* at mii? phy ? # Cicada CS8201 Gig-E PHYs 300dmphy* at mii? phy ? # Davicom DM9101 PHYs 301exphy* at mii? phy ? # 3Com internal PHYs 302gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs 303glxtphy* at mii? phy ? # Level One LXT-1000 PHYs 304gphyter* at mii? phy ? # NS83861 Gig-E PHY 305icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x 306igphy* at mii? phy ? # Intel IGP01E1000 307ikphy* at mii? phy ? # Intel 82563 PHYs 308inphy* at mii? phy ? # Intel 82555 PHYs 309iophy* at mii? phy ? # Intel 82553 PHYs 310lxtphy* at mii? phy ? # Level One LXT-970 PHYs 311makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 312nsphy* at mii? phy ? # NS83840 PHYs 313nsphyter* at mii? phy ? # NS83843 PHYs 314pnaphy* at mii? phy ? # generic HomePNA PHYs 315qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 316rgephy* at mii? phy ? # Realtek 8169S/8110S internal PHYs 317rlphy* at mii? phy ? # Realtek 8139/8201L PHYs 318sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 319tlphy* at mii? phy ? # ThunderLAN PHYs 320tqphy* at mii? phy ? # TDK Semiconductor PHYs 321ukphy* at mii? phy ? # generic unknown PHYs 322urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs 323 324# PCI USB controllers 325uhci* at pci? dev ? function ? # USB Universal Host Controller 326ohci* at pci? dev ? function ? # USB Open Host Controller 327ehci* at pci? dev ? function ? # USB Enhanced Host Controller 328 329usb* at uhci? # USB bus support 330usb* at ohci? # USB bus support 331usb* at ehci? # USB bus support 332uhub* at usb? # USB Hubs 333uhub* at uhub? port ? 334 335# USB Mass Storage 336umass* at uhub? port ? configuration ? interface ? 337wd* at umass? 338 339uhidev* at uhub? port ? configuration ? interface ? # USB HID device 340 341ums* at uhidev? reportid ? # USB Mice 342wsmouse* at ums? mux 0 343 344ukbd* at uhidev? reportid ? # USB Keyboards 345wskbd* at ukbd? console ? mux 1 346 347ucycom* at uhidev? reportid ? # USB serial adapter 348uhid* at uhidev? reportid ? # USB Generic HID 349ulpt* at uhub? port ? configuration ? interface ? # USB Printer 350umodem* at uhub? port ? configuration ? # USB Modem 351ucom* at umodem? 352uhso* at uhub? port ? configuration ? # Option N.V. Wireless WAN modems 353#uaudio* at uhub? port ? configuration ? # USB audio 354 355# D-Link DSB-R100 USB FM radio tuner 356#udsbr* at uhub? port ? 357#radio* at udsbr? 358 359# USB Ethernet adapters 360#aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 361#axe* at uhub? port ? # ASIX AX88172 based adapters 362#cue* at uhub? port ? # CATC USB-EL1201A based adapters 363#kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 364#url* at uhub? port ? # Realtek RTL8150L based adapters 365#udav* at uhub? port ? # Davicom DM9601 based adapters 366 367#ukyopon* at uhub? port ? # Kyocera AIR-EDGE PHONE 368#ucom* at ukyopon? portno ? 369 370#uscanner* at uhub? port ? # USB scanners 371#uyap* at uhub? port ? # Y@P firmware loader 372ugen* at uhub? port ? configuration ? interface ? # USB Generic driver 373 374# USB 802.11 adapters 375#atu* at uhub? port ? # Atmel at76c50x 802.11b 376#ral* at uhub? port ? # Ralink Technology RT25x0 802.11a/b/g 377#zyd* at uhub? port ? # Zydas ZD1211 378 379# PCI IEEE1394 controllers 380fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller 381 382ieee1394if* at fwohci? 383fwip* at ieee1394if? # IP over IEEE1394 384sbp* at ieee1394if? euihi ? euilo ? 385 386# Audio Devices 387 388# PCI audio devices 389auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio 390 391# Audio support 392audio* at audiobus? 393 394 395# 396# accept filters 397pseudo-device accf_data # "dataready" accept filter 398pseudo-device accf_http # "httpready" accept filter 399 400pseudo-device vnd # disk-like interface to files 401#options VND_COMPRESSION # compressed vnd(4) 402pseudo-device ccd 4 # concatenated/striped disk devices 403#pseudo-device cgd 4 # cryptographic disk devices 404pseudo-device raid 8 # RAIDframe disk driver 405options RAID_AUTOCONFIG # auto-configuration of RAID components 406# Options to enable various other RAIDframe RAID types. 407#options RF_INCLUDE_EVENODD=1 408#options RF_INCLUDE_RAID5_RS=1 409#options RF_INCLUDE_PARITYLOGGING=1 410#options RF_INCLUDE_CHAINDECLUSTER=1 411#options RF_INCLUDE_INTERDECLUSTER=1 412#options RF_INCLUDE_PARITY_DECLUSTERING=1 413#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 414pseudo-device fss # file system snapshot device 415pseudo-device md # memory disk device 416pseudo-device loop # network loopback 417pseudo-device bpfilter # packet filter 418#pseudo-device carp # Common Address Redundancy Protocol 419pseudo-device ipfilter # IP Filter (firewall) and NAT 420pseudo-device ppp # Point-to-Point Protocol 421pseudo-device pppoe # PPP over Ethernet (RFC 2516) 422pseudo-device sl # Serial Line IP 423pseudo-device tun # network tunneling over tty 424pseudo-device tap # virtual Ethernet 425#pseudo-device gre # generic L3 over IP tunnel 426pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933) 427#pseudo-device faith # IPv[46] tcp relay translation i/f 428pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 429pseudo-device vlan # IEEE 802.1q encapsulation 430pseudo-device bridge # simple inter-network bridging 431#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 432pseudo-device agr # IEEE 802.3ad link aggregation 433pseudo-device pty # pseudo-terminals 434pseudo-device rnd # /dev/random and in-kernel generator 435pseudo-device clockctl # user control of clock subsystem 436pseudo-device openfirm # /dev/openfirm 437pseudo-device ksyms # /dev/ksyms 438pseudo-device wsmux # mouse and keyboard multiplexor 439#pseudo-device pf # PF packet filter 440#pseudo-device pflog # PF log if 441pseudo-device putter # for puffs and pud 442 443# Veriexec 444# 445# a pseudo device needed for veriexec 446#pseudo-device veriexec 1 447# 448# Uncomment the fingerprint methods below that are desired. Note that 449# removing fingerprint methods will have almost no impact on the kernel 450# code size. 451# 452#options VERIFIED_EXEC_FP_RMD160 453#options VERIFIED_EXEC_FP_SHA256 454#options VERIFIED_EXEC_FP_SHA384 455#options VERIFIED_EXEC_FP_SHA512 456#options VERIFIED_EXEC_FP_SHA1 457#options VERIFIED_EXEC_FP_MD5 458