NEXTVOD revision 1.1       1 # $NetBSD: NEXTVOD,v 1.1 2020/07/19 23:44:36 uwe Exp $
      2 
      3 # This config and related files are placeholders/boilerplate for work
      4 # in progress.  Not expected to compile.
      5 
      6 include "arch/evbsh3/conf/std.nextvod"
      7 
      8 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      9 #ident 		"NEXTVOD-$Revision: 1.1 $"
     10 
     11 maxusers	32		# estimated number of users
     12 
     13 
     14 # Standard system options
     15 options 	INSECURE	# disable kernel security levels
     16 
     17 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     18 options 	NTP		# NTP phase/frequency locked loop
     19 options 	KTRACE		# system call tracing via ktrace(1)
     20 
     21 options 	SYSVMSG		# System V message queues
     22 options 	SYSVSEM		# System V semaphores
     23 options 	SYSVSHM		# System V shared memory
     24 
     25 #options 	MODULAR		# new style module(7) framework
     26 #options 	MODULAR_DEFAULT_AUTOLOAD
     27 
     28 options 	USERCONF	# userconf(4) support
     29 #options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     30 #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     31 
     32 
     33 # Diagnostic/debugging support options
     34 #options 	DIAGNOSTIC	# cheap kernel consistency checks
     35 #options 	DEBUG		# expensive debugging checks/support
     36 options 	DDB		# in-kernel debugger
     37 #options 	DDB_ONPANIC=0	# don't go into ddb on panic.
     38 options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     39 #options 	DDB_COMMANDONENTER="bt"
     40 
     41 
     42 # File systems
     43 #file-system 	FFS		# UFS
     44 file-system 	MFS		# memory file system
     45 file-system 	NFS		# Network File System client
     46 file-system 	KERNFS		# /kern
     47 file-system 	PROCFS		# /proc
     48 file-system	PTYFS		# /dev/pts/N support
     49 
     50 # File system options
     51 #options 	WAPBL		# File system journaling support
     52 #options 	UFS_ACL		# UFS Access Control Lists
     53 options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     54 options 	NFS_BOOT_DHCP	# Support DHCP NFS root
     55 
     56 
     57 # Networking options
     58 #options 	GATEWAY		# packet forwarding
     59 options 	INET		# IP + ICMP + TCP + UDP
     60 options 	INET6		# IPV6
     61 #options 	IPSEC		# IP security
     62 #options 	IPSEC_DEBUG	# debug for IP security
     63 #options 	MROUTING	# IP multicast routing
     64 #options 	PIM		# Protocol Independent Multicast
     65 #options 	NETATALK	# AppleTalk networking protocols
     66 #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     67 #options 	PPP_DEFLATE	# Deflate compression support for PPP
     68 #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     69 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     70 #options 	TCP_SIGNATURE	# Enable RFC-2385 TCP md5 signatures
     71 
     72 # These options enable verbose messages for several subsystems.
     73 # Warning, these may compile large string tables into the kernel!
     74 #options 	ACPIVERBOSE	# verbose ACPI configuration messages
     75 #options 	MIIVERBOSE	# verbose PHY autoconfig messages
     76 options 	PCIVERBOSE	# verbose PCI device autoconfig messages
     77 #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
     78 #options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
     79 options 	SCSIVERBOSE	# human readable SCSI error messages
     80 #options 	USBVERBOSE	# verbose USB device autoconfig messages
     81 #options 	HDAUDIOVERBOSE	# verbose HDAUDIO driver messages
     82 
     83 
     84 # Enable the hooks used for initializing the root memory-disk.
     85 #options 	MEMORY_DISK_HOOKS
     86 #options 	MEMORY_DISK_IS_ROOT	# force root on memory disk
     87 #options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
     88 #options 	MEMORY_DISK_ROOT_SIZE=3074	# size of memory disk, in blocks
     89 #options 	MEMORY_DISK_RBFLAGS=RB_SINGLE	# boot in single-user mode
     90 
     91 # Kernel root file system and dump configuration.
     92 config		netbsd	root on ? type ?
     93 
     94 
     95 #
     96 # Device configuration
     97 #
     98 mainbus0 at root
     99 
    100 shb* at mainbus?
    101 
    102 # serial (console)
    103 stasc0 at mainbus?
    104 
    105 
    106 # Pseudo-Devices
    107 
    108 pseudo-device	swcrypto		# software crypto implementation
    109 
    110 # disk/mass storage pseudo-devices
    111 #pseudo-device	bio			# RAID control device driver
    112 #pseudo-device	ccd			# concatenated/striped disk devices
    113 #pseudo-device	cgd			# cryptographic disk devices
    114 
    115 #pseudo-device	raid			# RAIDframe disk driver
    116 #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    117 #Options to enable various other RAIDframe RAID types.
    118 #options 	RF_INCLUDE_EVENODD=1
    119 #options 	RF_INCLUDE_RAID5_RS=1
    120 #options 	RF_INCLUDE_PARITYLOGGING=1
    121 #options 	RF_INCLUDE_CHAINDECLUSTER=1
    122 #options 	RF_INCLUDE_INTERDECLUSTER=1
    123 #options 	RF_INCLUDE_PARITY_DECLUSTERING=1
    124 #options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
    125 
    126 #pseudo-device	fss			# file system snapshot device
    127 
    128 pseudo-device	md			# memory disk device (ramdisk
    129 #options 	MEMORY_DISK_DYNAMIC	# loaded via kernel module(7)
    130 
    131 #pseudo-device	vnd			# disk-like interface to files
    132 #options 	VND_COMPRESSION		# compressed vnd(4)
    133 
    134 # network pseudo-devices
    135 pseudo-device	bpfilter		# Berkeley packet filter
    136 #pseudo-device	carp			# Common Address Redundancy Protocol
    137 pseudo-device	loop			# network loopback
    138 #pseudo-device	mpls			# MPLS pseudo-interface
    139 #pseudo-device	ppp			# Point-to-Point Protocol
    140 #pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    141 #pseudo-device	sl			# Serial Line IP
    142 #pseudo-device	irframetty		# IrDA frame line discipline
    143 #pseudo-device	tun			# network tunneling over tty
    144 #pseudo-device	tap			# virtual Ethernet
    145 #pseudo-device	gre			# generic L3 over IP tunnel
    146 #pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
    147 #pseudo-device	ipsecif			# tunnel interface for routing based ipsec
    148 #pseudo-device	faith			# IPv[46] tcp relay translation i/f
    149 #pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    150 #pseudo-device	vlan			# IEEE 802.1q encapsulation
    151 #pseudo-device	bridge			# simple inter-network bridging
    152 #options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    153 #pseudo-device	agr			# IEEE 802.3ad link aggregation
    154 #pseudo-device	l2tp			# L2TPv3 interface
    155 #pseudo-device	npf			# NPF packet filter
    156 
    157 # miscellaneous pseudo-devices
    158 pseudo-device	pty			# pseudo-terminals
    159 pseudo-device	clockctl		# user control of clock subsystem
    160 pseudo-device	ksyms			# /dev/ksyms
    161 #pseudo-device	lockstat		# lock profiling
    162 #pseudo-device	bcsp			# BlueCore Serial Protocol
    163 #pseudo-device	btuart			# Bluetooth HCI UART (H4)
    164 
    165 # wscons pseudo-devices
    166 #pseudo-device	wsmux			# mouse & keyboard multiplexor
    167 #pseudo-device	wsfont
    168 # Give us a choice of fonts based on monitor size
    169 #options 	FONT_BOLD8x16
    170 #options 	FONT_BOLD16x32
    171 
    172 # pseudo audio device driver
    173 #pseudo-device	pad
    174 
    175 # userland interface to drivers, including autoconf and properties retrieval
    176 pseudo-device	drvctl
    177 
    178 #include "dev/veriexec.config"
    179