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