OPENBLOCKS600 revision 1.17
1# $NetBSD: OPENBLOCKS600,v 1.17 2014/08/16 17:56:32 apb Exp $ 2# 3# GENERIC -- everything that's currently supported 4# 5 6include "arch/evbppc/conf/std.obs600" 7 8#options INCLUDE_CONFIG_FILE # embed config file in kernel binary 9 10#ident "OPENBLOCKS600-$Revision: 1.17 $" 11 12maxusers 32 13 14 15# 16# Standard system options 17# 18 19#options INSECURE # disable kernel security levels 20#options NTP # NTP phase/frequency locked loop 21#options KTRACE # system call tracing via ktrace(1) 22 23options SYSVMSG # System V message queues 24options SYSVSEM # System V semaphores 25options SYSVSHM # System V shared memory 26 27#options USERCONF # userconf(4) support 28#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 29#options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 30 31#options UVMHIST 32#options UVMHIST_PRINT 33 34 35# 36# Diagnostic/debugging support options 37# 38 39#options DIAGNOSTIC # cheap kernel consistency checks 40options DEBUG # expensive debugging checks/support 41#options KMEMSTATS # kernel memory statistics (vmstat -m) 42options DDB # in-kernel debugger 43options DDB_HISTORY_SIZE=512 # enable history editing in DDB 44options TRAP_PANICWAIT 45options SYMTAB_SPACE=430000 # size for embedded symbol table 46 47makeoptions DEBUG="-g" # compile full symbol table 48 49 50# 51# Compatibility options 52# 53 54#options COMPAT_09 # NetBSD 0.9, 55#options COMPAT_10 # NetBSD 1.0, 56#options COMPAT_11 # NetBSD 1.1, 57#options COMPAT_12 # NetBSD 1.2, 58options COMPAT_13 # NetBSD 1.3, 59options COMPAT_14 # NetBSD 1.4, 60options COMPAT_15 # NetBSD 1.5, 61options COMPAT_16 # NetBSD 1.6, 62options COMPAT_20 # NetBSD 2.0, 63options COMPAT_30 # NetBSD 3.0, 64options COMPAT_40 # NetBSD 4.0, 65options COMPAT_50 # NetBSD 5.0 compatibility. 66options COMPAT_60 # NetBSD 6.0 compatibility. 67options COMPAT_70 # NetBSD 7.0 compatibility. 68options COMPAT_43 # and 4.3BSD 69#options COMPAT_386BSD_MBRPART # recognize old partition ID 70options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 71 72 73# 74# File systems 75# 76 77file-system FFS # UFS 78file-system EXT2FS # second extended file system (linux) 79file-system LFS # log-structured file system 80file-system MFS # memory file system 81file-system NFS # Network File System client 82file-system CD9660 # ISO 9660 + Rock Ridge file system 83file-system MSDOSFS # MS-DOS file system 84file-system FDESC # /dev/fd 85file-system KERNFS # /kern 86file-system NULLFS # loopback file system 87file-system OVERLAY # overlay file system 88file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs) 89file-system PROCFS # /proc 90file-system UMAPFS # NULLFS + uid and gid remapping 91file-system UNION # union file system 92file-system PTYFS # /dev/pts/N support 93file-system TMPFS # Efficient memory file-system 94#file-system NTFS # Windows NT file system (experimental) 95 96 97# 98# File system options 99# 100 101options QUOTA # legacy UFS quotas 102options QUOTA2 # new, in-filesystem UFS quotas 103options FFS_EI # FFS Endian Independent support 104options WAPBL # File system journaling support 105options NFSSERVER # Network File System server 106#options FFS_NO_SNAPSHOT # No FFS snapshot support 107options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 108 # immutable) behave as system flags. 109options NFS_BOOT_DHCP # Support DHCP NFS root 110 111 112# 113# Networking options 114# 115 116options GATEWAY # packet forwarding 117options INET # IP + ICMP + TCP + UDP 118options INET6 # IPv6 119#options IPSEC # IP security 120#options IPSEC_DEBUG # debug for IP security 121#options MROUTING # IP multicast routing 122#options PIM # Protocol Independent Multicast 123#options DIRECTED_BROADCAST # allow broadcasts through routers 124#options NETATALK # AppleTalk networking protocols 125options PPP_BSDCOMP # BSD-Compress compression support for PPP 126options PPP_DEFLATE # Deflate compression support for PPP 127options PPP_FILTER # Active filter support for PPP (requires bpf) 128options IPFILTER_LOG # ipmon(8) log support 129options IPFILTER_LOOKUP # ippool(8) support 130#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 131#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 132 133# These options enable verbose messages for several subsystems. 134# Warning, these may compile large string tables into the kernel! 135#options SCSIVERBOSE # human readable SCSI error messages 136#options USBVERBOSE # verbose USB device autoconfig messages 137 138# 139# Kernel root file system and dump configuration. 140# 141 142config netbsd root on ? type ? 143 144 145# 146# Device configuration 147# 148 149plb0 at root # Processor Local Bus 150cpu0 at plb? # CPU 151ecc0 at plb? irq 17 # On-chip ECC controller 152dwctwo at plb? addr 0xef6c0000 irq 94 # On-chip USB controller 153 154# On-chip Peripheral Bus support 155opb* at plb? # On-chip Peripheral Bus 156wdog* at opb? # Watchdog timer 157com* at opb? addr ? irq ? # UARTs 158emac* at opb? addr ? irq ? # Ethernet Media Access Controller 159options EMAC_EVENT_COUNTERS 160options EMAC_RGMII_PHY 161 162gpiic* at opb? addr ? irq ? # On-chip IIC controller 163iic* at gpiic? # I2C bus 164m41trtc0 at iic? addr 0x68 # Dallas DS1340C Real Time Clock 165 166opbgpio0 at opb? addr ? irq ? # On-chip GPIO controller 167gpio* at opbgpio? # GPIO framework 168 169# USB bus support 170usb* at dwctwo? 171 172# USB Hubs 173uhub* at usb? 174uhub* at uhub? port ? 175 176# USB Mass Storage 177umass* at uhub? port ? configuration ? interface ? 178scsibus* at umass? 179sd* at scsibus? target ? lun ? # SCSI disk drives 180 181# MII/PHY support 182brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs 183 184 185# 186# Pseudo devices 187# 188 189# disk/mass storage pseudo-devices 190#pseudo-device ccd # concatenated/striped disk devices 191#pseudo-device cgd # cryptographic disk devices 192#pseudo-device raid # RAIDframe disk driver 193#options RAID_AUTOCONFIG # auto-configuration of RAID components 194#pseudo-device fss # file system snapshot device 195#pseudo-device md # memory disk device 196#pseudo-device vnd # disk-like interface to files 197 198# network pseudo-devices 199pseudo-device loop # network loopback 200pseudo-device bpfilter # packet filter 201pseudo-device ipfilter # IP filter (firewall) and NAT 202pseudo-device ppp # Point-to-Point Protocol 203pseudo-device pppoe # PPP over Ethernet (RFC 2516) 204#options PPPOE_SERVER # Enable PPPoE server via link0 205pseudo-device sl # Serial Line IP 206pseudo-device strip # Starmode Radio IP (Metricom) 207#pseudo-device irframetty # IrDA frame line discipline 208pseudo-device tap # virtual ethernet 209pseudo-device tun # network tunneling over tty 210pseudo-device gre # generic L3 over IP tunnel 211pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC 1933) 212#pseudo-device faith # IPv[46] TCP relay translation i/f 213pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 214pseudo-device vlan # IEEE 802.1q encapsulation 215pseudo-device bridge # simple inter-network bridging 216#options BRIDGE_IPF # bridge uses IPv[46] pfil hooks too 217pseudo-device agr # IEEE 802.3ad link aggregation 218#pseudo-device pf # PF packet filter 219#pseudo-device pflog # PF log if 220 221# miscellaneous pseudo-devices 222pseudo-device pty # pseudo-terminals 223pseudo-device clockctl # user control of clock subsystem 224pseudo-device ksyms # /dev/ksyms 225pseudo-device putter # for puffs and pud 226