1# $NetBSD: EXPLORA451,v 1.58 2014/08/23 20:26:57 dholland Exp $ 2# 3# GENERIC -- everything that's currently supported 4# 5 6include "arch/evbppc/conf/std.explora" 7 8#options INCLUDE_CONFIG_FILE # embed config file in kernel binary 9 10#ident "EXPLORA451" 11 12maxusers 32 13 14# Options for necessary to use root memory disk 15#options MEMORY_DISK_HOOKS 16#options MEMORY_DISK_IS_ROOT 17#options MEMORY_DISK_SERVER=0 18#options MEMORY_DISK_ROOT_SIZE=4096 19 20# Standard system options 21 22options INSECURE # disable kernel security levels - X needs this 23 24options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 25options NTP # NTP phase/frequency locked loop 26 27options KTRACE # system call tracing via ktrace(1) 28 29options SYSVMSG # System V-like message queues 30options SYSVSEM # System V-like semaphores 31#options SEMMNI=10 # number of semaphore identifiers 32#options SEMMNS=60 # number of semaphores in system 33#options SEMUME=10 # max number of undo entries per process 34#options SEMMNU=30 # number of undo structures in system 35options SYSVSHM # System V-like memory sharing 36 37options USERCONF # userconf(4) support 38#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 39#options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 40 41# Enable experimental buffer queue strategy for better responsiveness under 42# high disk I/O load. Use it with caution - it's not proven to be stable yet. 43#options BUFQ_READPRIO 44#options BUFQ_PRIOCSCAN 45 46# Diagnostic/debugging support options 47options DIAGNOSTIC # expensive kernel consistency checks 48options DEBUG # expensive debugging checks/support 49#options KMEMSTATS # kernel memory statistics (vmstat -m) 50options DDB # in-kernel debugger 51options DDB_HISTORY_SIZE=512 # enable history editing in DDB 52#options KGDB # remote debugger 53#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600 54makeoptions DEBUG="-g" # compile full symbol table 55makeoptions COPY_SYMTAB=1 56 57# Compatibility options 58options COMPAT_NOMID # compatibility with 386BSD, BSDI, NetBSD 0.8, 59options COMPAT_09 # NetBSD 0.9, 60options COMPAT_10 # NetBSD 1.0, 61options COMPAT_11 # NetBSD 1.1, 62options COMPAT_12 # NetBSD 1.2, 63options COMPAT_13 # NetBSD 1.3, 64options COMPAT_14 # NetBSD 1.4, 65options COMPAT_15 # NetBSD 1.5, 66options COMPAT_16 # NetBSD 1.6, 67options COMPAT_20 # NetBSD 2.0, 68options COMPAT_30 # NetBSD 3.0, 69options COMPAT_40 # NetBSD 4.0, 70options COMPAT_50 # NetBSD 5.0, 71options COMPAT_60 # NetBSD 6.0, and 72options COMPAT_70 # NetBSD 7.0 binary compatibility. 73options COMPAT_43 # 4.3BSD binary compatibility. 74#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 75options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 76 77# File systems 78file-system FFS # UFS 79file-system EXT2FS # second extended file system (linux) 80file-system LFS # log-structured file system 81file-system MFS # memory file system 82file-system NFS # Network File System client 83file-system NTFS # Windows/NT file system (experimental) 84file-system CD9660 # ISO 9660 + Rock Ridge file system 85file-system MSDOSFS # MS-DOS file system 86file-system FDESC # /dev/fd 87file-system KERNFS # /kern 88file-system NULLFS # loopback file system 89file-system OVERLAY # overlay file system 90file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs) 91file-system PROCFS # /proc 92file-system UMAPFS # NULLFS + uid and gid remapping 93file-system UNION # union file system 94file-system CODA # Coda File System; also needs vcoda (below) 95file-system SMBFS # experimental - CIFS; also needs nsmb (below) 96file-system PTYFS # /dev/pts/N support 97 98# File system options 99options QUOTA # legacy UFS quotas 100options QUOTA2 # new, in-filesystem UFS quotas 101#options FFS_EI # FFS Endian Independent support 102options WAPBL # File system journaling support 103options NFSSERVER # Network File System server 104#options FFS_NO_SNAPSHOT # No FFS snapshot support 105#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 106 # immutable) behave as system flags. 107 108# Networking options 109#options GATEWAY # packet forwarding 110options INET # IP + ICMP + TCP + UDP 111options INET6 # IPV6 112#options IPSEC # IP security 113#options IPSEC_DEBUG # debug for IP security 114#options MROUTING # IP multicast routing 115#options PIM # Protocol Independent Multicast 116options NETATALK # AppleTalk networking protocols 117options PPP_BSDCOMP # BSD-Compress compression support for PPP 118options PPP_DEFLATE # Deflate compression support for PPP 119options PPP_FILTER # Active filter support for PPP (requires bpf) 120options IPFILTER_LOG # ipmon(8) log support 121options IPFILTER_LOOKUP # ippool(8) support 122#options IPFILTER_DEFAULT_BLOCK # block all packets by default 123#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 124 125# Options for wscons 126# 127# builtin terminal emulations 128#options WSEMUL_SUN # sun terminal emulation 129options WSEMUL_VT100 # VT100 / VT220 emulation 130# different kernel output - see dev/wscons/wsdisplayvar.h 131options WS_KERNEL_FG=WSCOL_GREEN 132#options WS_KERNEL_BG=WSCOL_BLACK 133# compatibility to other console drivers 134#options WSDISPLAY_COMPAT_PCVT # emulate some ioctls 135#options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls 136#options WSDISPLAY_COMPAT_USL # wsconscfg VT handling 137#options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes 138# see dev/pckbport/wskbdmap_mfii.c for implemented layouts 139#options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" 140# allocate a number of virtual screens at autoconfiguration time 141options WSDISPLAY_DEFAULTSCREENS=1 142 143# Options for netboot 144options NFS_BOOT_BOOTPARAM 145options NFS_BOOT_DHCP 146 147config netbsd root on ? type ? 148 149elb0 at root 150 151cpu0 at elb? 152com0 at elb? 153lpt0 at elb? 154le0 at elb? 155 156fb0 at elb? 157wsdisplay* at fb? 158 159pckbc0 at elb? 160pckbd* at pckbc? 161wskbd* at pckbd? console ? 162pms* at pckbc? 163wsmouse* at pms? mux 0 164 165# Pseudo-Devices 166 167# disk/mass storage pseudo-devices 168 169pseudo-device md # memory disk device (ramdisk) 170pseudo-device vnd # disk-like interface to files 171pseudo-device putter # for puffs and pud 172 173# network pseudo-devices 174pseudo-device bpfilter # Berkeley packet filter 175pseudo-device ipfilter # IP filter (firewall) and NAT 176pseudo-device loop # network loopback 177pseudo-device ppp # Point-to-Point Protocol 178pseudo-device pppoe # PPP over Ethernet (RFC 2516) 179pseudo-device sl # Serial Line IP 180pseudo-device strip # Starmode Radio IP (Metricom) 181pseudo-device irframetty # IrDA frame line discipline 182pseudo-device tun # network tunneling over tty 183pseudo-device tap # virtual Ethernet 184pseudo-device gre # generic L3 over IP tunnel 185pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933) 186#pseudo-device faith # IPv[46] tcp relay translation i/f 187pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 188pseudo-device vlan # IEEE 802.1q encapsulation 189pseudo-device bridge # simple inter-network bridging 190#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 191 192# miscellaneous pseudo-devices 193pseudo-device pty # pseudo-terminals 194#options RND_COM # use "com" randomness as well (BROKEN) 195pseudo-device clockctl # user control of clock subsystem 196pseudo-device ksyms # /dev/ksyms 197 198# a pseudo device needed for Coda # also needs CODA (above) 199pseudo-device vcoda # coda minicache <-> venus comm. 200 201# a pseudo device needed for SMBFS 202pseudo-device nsmb # experimental - SMB requester 203 204# wscons pseudo-devices 205pseudo-device wsmux # mouse & keyboard multiplexor 206pseudo-device wsfont 207