Home | History | Annotate | Line # | Download | only in conf
EXPLORA451 revision 1.64
      1 #	$NetBSD: EXPLORA451,v 1.64 2019/04/26 21:40:29 sevan 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 # Alternate buffer queue strategies for better responsiveness under high
     42 # disk I/O load.
     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 	DDB		# in-kernel debugger
     50 options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     51 #options 	KGDB		# remote debugger
     52 #options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
     53 makeoptions	DEBUG="-g"	# compile full symbol table
     54 makeoptions	COPY_SYMTAB=1
     55 
     56 # Compatibility options
     57 include 	"conf/compat_netbsd13.config"
     58 options 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
     59 
     60 # File systems
     61 file-system 	FFS		# UFS
     62 file-system 	EXT2FS		# second extended file system (linux)
     63 file-system 	LFS		# log-structured file system
     64 file-system 	MFS		# memory file system
     65 file-system 	NFS		# Network File System client
     66 file-system 	NTFS		# Windows/NT file system (experimental)
     67 file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     68 file-system 	MSDOSFS		# MS-DOS file system
     69 file-system 	FDESC		# /dev/fd
     70 file-system 	KERNFS		# /kern
     71 file-system 	NULLFS		# loopback file system
     72 file-system 	OVERLAY		# overlay file system
     73 file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
     74 file-system 	PROCFS		# /proc
     75 file-system 	UMAPFS		# NULLFS + uid and gid remapping
     76 file-system 	UNION		# union file system
     77 file-system	CODA		# Coda File System; also needs vcoda (below)
     78 file-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
     79 file-system	PTYFS		# /dev/pts/N support
     80 
     81 # File system options
     82 options 	QUOTA		# legacy UFS quotas
     83 options 	QUOTA2		# new, in-filesystem UFS quotas
     84 #options 	FFS_EI		# FFS Endian Independent support
     85 options 	WAPBL		# File system journaling support
     86 options 	NFSSERVER	# Network File System server
     87 #options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     88 #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     89 				# immutable) behave as system flags.
     90 
     91 # Networking options
     92 #options 	GATEWAY		# packet forwarding
     93 options 	INET		# IP + ICMP + TCP + UDP
     94 options 	INET6		# IPV6
     95 #options 	IPSEC		# IP security
     96 #options 	IPSEC_DEBUG	# debug for IP security
     97 #options 	MROUTING	# IP multicast routing
     98 #options 	PIM		# Protocol Independent Multicast
     99 options 	NETATALK	# AppleTalk networking protocols
    100 options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    101 options 	PPP_DEFLATE	# Deflate compression support for PPP
    102 options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    103 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    104 
    105 # Options for wscons
    106 #
    107 # builtin terminal emulations
    108 #options 	WSEMUL_SUN		# sun terminal emulation
    109 options 	WSEMUL_VT100		# VT100 / VT220 emulation
    110 # different kernel output - see dev/wscons/wsdisplayvar.h
    111 options 	WS_KERNEL_FG=WSCOL_GREEN
    112 #options 	WS_KERNEL_BG=WSCOL_BLACK
    113 # compatibility to other console drivers
    114 #options 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
    115 #options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
    116 #options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
    117 #options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
    118 # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
    119 #options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
    120 # allocate a number of virtual screens at autoconfiguration time
    121 options 	WSDISPLAY_DEFAULTSCREENS=1
    122 
    123 # Options for netboot
    124 options 	NFS_BOOT_BOOTPARAM
    125 options 	NFS_BOOT_DHCP
    126 
    127 config		netbsd  root on ? type ?
    128 
    129 elb0		at root
    130 
    131 cpu0		at elb?
    132 com0		at elb?
    133 lpt0		at elb?
    134 le0		at elb?
    135 
    136 fb0		at elb?
    137 wsdisplay*	at fb?
    138 
    139 pckbc0		at elb?
    140 pckbd*		at pckbc?
    141 wskbd*		at pckbd? console ?
    142 pms*		at pckbc?
    143 wsmouse*	at pms? mux 0
    144 
    145 # Pseudo-Devices
    146 
    147 # disk/mass storage pseudo-devices
    148 
    149 pseudo-device	md			# memory disk device (ramdisk)
    150 pseudo-device	vnd			# disk-like interface to files
    151 pseudo-device	putter			# for puffs and pud
    152 
    153 # network pseudo-devices
    154 pseudo-device	bpfilter		# Berkeley packet filter
    155 pseudo-device 	carp			# Common Address Redundancy Protocol
    156 pseudo-device	npf			# NPF packet filter
    157 pseudo-device	loop			# network loopback
    158 pseudo-device	ppp			# Point-to-Point Protocol
    159 pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    160 pseudo-device	sl			# Serial Line IP
    161 pseudo-device	strip			# Starmode Radio IP (Metricom)
    162 pseudo-device	irframetty		# IrDA frame line discipline
    163 pseudo-device	tun			# network tunneling over tty
    164 pseudo-device	tap			# virtual Ethernet
    165 pseudo-device	gre			# generic L3 over IP tunnel
    166 pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
    167 #pseudo-device	faith			# IPv[46] tcp relay translation i/f
    168 pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    169 pseudo-device	vlan			# IEEE 802.1q encapsulation
    170 pseudo-device	bridge			# simple inter-network bridging
    171 #options	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    172 
    173 # miscellaneous pseudo-devices
    174 pseudo-device	pty			# pseudo-terminals
    175 #options 	RND_COM			# use "com" randomness as well (BROKEN)
    176 pseudo-device	clockctl		# user control of clock subsystem
    177 pseudo-device	ksyms			# /dev/ksyms
    178 
    179 # a pseudo device needed for Coda	# also needs CODA (above)
    180 pseudo-device	vcoda			# coda minicache <-> venus comm.
    181 
    182 # a pseudo device needed for SMBFS
    183 pseudo-device	nsmb			# experimental - SMB requester
    184 
    185 # wscons pseudo-devices
    186 pseudo-device	wsmux			# mouse & keyboard multiplexor
    187 pseudo-device	wsfont
    188 
    189 include "dev/veriexec.config"
    190