G1IDE revision 1.5
1# $NetBSD: G1IDE,v 1.5 2017/09/14 07:58:39 mrg Exp $
2
3include 	"arch/dreamcast/conf/std.dreamcast"
4
5options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
6
7maxusers	16		# estimated number of users
8
9# Standard system options
10#options 	INSECURE	# disable kernel security levels
11
12#options 	RTC_OFFSET=-540
13options 	HZ=100		# clock interrupt generates every 1/HZ sec
14options 	NTP		# NTP phase/frequency locked loop
15
16options 	KTRACE		# system call tracing via ktrace(1)
17
18options 	USERCONF	# userconf(4) support
19#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
20options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
21
22options 	SYSVMSG		# System V-like message queues
23options 	SYSVSEM		# System V-like semaphores
24options 	SYSVSHM		# System V-like memory sharing
25
26#options 	MODULAR		# new style module(7) framework
27#options 	MODULAR_DEFAULT_AUTOLOAD
28
29# Alternate buffer queue strategies for better responsiveness under high
30# disk I/O load.
31#options 	BUFQ_READPRIO
32options 	BUFQ_PRIOCSCAN
33
34# Diagnostic/debugging support options
35options 	DIAGNOSTIC	# cheap kernel consistency checks
36#options 	DEBUG		# expensive debugging checks/support
37options 	DDB		# in-kernel debugger
38#options 	KGDB			# remote debugger
39#options 	"KGDB_DEVNAME=\"scif\"",KGDB_DEVRATE=57600
40#makeoptions	DEBUG="-g"	# compile full symbol table
41makeoptions	COPY_SYMTAB=1
42#options 	SYSCALL_DEBUG
43#options 	UVMHIST
44#options 	UVMHIST_PRINT
45
46# Compatibility options
47
48include 	"conf/compat_netbsd16.config"
49
50# Executable format options
51options 	EXEC_COFF	# COFF executables
52
53# File systems
54file-system 	FFS		# UFS
55#file-system	EXT2FS		# second extended file system (linux)
56#file-system	LFS		# log-structured file system
57file-system 	MFS		# memory file system
58file-system 	NFS		# Network File System client
59file-system	CD9660		# CD-ROM file system
60file-system	MSDOSFS		# MS-DOS file system
61file-system	FDESC		# /dev/fd
62file-system 	KERNFS		# /kern
63file-system 	PROCFS		# /proc
64file-system 	NULLFS		# loopback file system
65#file-system	OVERLAY		# overlay file system
66#file-system 	UMAPFS		# NULLFS + uid and gid remapping
67file-system	UNION		# union file system
68file-system	PTYFS		# /dev/pts/N support
69file-system	TMPFS		# Efficient memory file-system
70#file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
71
72# File system options
73#options 	QUOTA		# legacy UFS quotas
74#options 	QUOTA2		# new, in-filesystem UFS quotas
75#options 	FFS_EI		# FFS Endian Independent supoprt
76options 	WAPBL		# File system journaling support
77#options 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
78#options 	NFSSERVER	# Network File System server
79options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
80#options 	UFS_EXTATTR	# Extended attribute support for UFS1
81#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
82				# immutable) behave as system flags.
83
84# Networking options
85options 	INET		# IP + ICMP + TCP + UDP
86options 	INET6		# IPV6
87#options 	IPSEC		# IP security
88#options 	IPSEC_DEBUG	# debug for IP security
89#options 	MROUTING	# IP multicast routing
90#options 	PIM		# Protocol Independent Multicast
91#options 	NETATALK	# AppleTalk networking protocols
92#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
93#options 	PPP_DEFLATE	# Deflrate compression support for PPP
94#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
95#options 	IPFILTER_LOG	# ipmon(8) log support
96#options 	IPFILTER_LOOKUP	# ippool(8) support
97#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
98#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
99
100#options 	ALTQ		# Manipulate network interfaces' output queues
101#options 	ALTQ_BLUE	# Stochastic Fair Blue
102#options 	ALTQ_CBQ	# Class-Based Queueing
103#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
104#options 	ALTQ_FIFOQ	# First-In First-Out Queue
105#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
106#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
107#options 	ALTQ_LOCALQ	# Local queueing discipline
108#options 	ALTQ_PRIQ	# Priority Queueing
109#options 	ALTQ_RED	# Random Early Detection
110#options 	ALTQ_RIO	# RED with IN/OUT
111#options 	ALTQ_WFQ	# Weighted Fair Queueing
112
113#options 	PCIVERBOSE	# verbose PCI device autoconfig messages
114#options 	MIIVERBOSE	# verbose PHY autoconfig messages
115#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
116
117options 	NFS_BOOT_DHCP	# Support DHCP NFS root
118
119options 	KLOADER		# in-kernel bootloader
120#options 	KLOADER_DEBUG
121
122# wscons options
123options 	WSEMUL_VT100		# VT100 / VT220 emulation
124options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
125options 	FONT_BOLD8x16
126#options 	FONT_SONY8x16
127
128# Kernel root file system and dump configuration.
129#config		netbsd	root on ? type nfs
130#config		netbsd	root on wd0a type ffs
131config		netbsd	root on ? type ?
132
133#
134# Device configuration
135#
136
137mainbus0 at root
138
139cpu*		at mainbus?
140shb*		at mainbus?
141
142# Serial Devices
143#options 	SCIFCONSOLE
144options 	SCIFCN_SPEED=57600
145scif0		at shb?
146
147pvr0		at shb?
148wsdisplay*	at pvr? console ?
149
150maple0		at shb?
151
152mkbd*		at maple? port ? subunit ?
153wskbd*		at mkbd? mux 1 console ?
154
155mms*		at maple? port ? subunit ?
156wsmouse*	at mms? mux 0
157
158#mmem*		at maple? port ? subunit ?
159#mlcd*		at maple? port ? subunit ?
160
161#gdrom0		at shb?
162
163g1bus0		at shb?
164wdc0		at g1bus?
165atabus*	at wdc? channel ?
166wd*		at atabus? drive ? flags 0x0000
167#options 	ATADEBUG
168#options 	ATADEBUG_MASK=DEBUG_PROBE
169#options 	ATADEBUG_MASK="(DEBUG_PROBE|DEBUG_XFERS)"
170
171# To enable "gdrom0 at atapibus?" also edit gdrom lines in conf/files.dreamcast
172atapibus*	at atabus?
173gdrom0		at atapibus?
174
175g2bus0		at shb?
176g2rtc0		at g2bus?			# time-of-day clock
177gapspci*	at g2bus?			# GAPS PCI bridge
178pci*		at gapspci?
179rtk*		at pci? dev ? function ?	# SEGA Broadband Adapter
180rlphy*		at mii? phy ?
181
182mbe*		at g2bus?			# SEGA LAN Adapter
183
184#aica*		at g2bus?			# AICA Sound Processing Unit
185#audio*		at audiobus?
186
187#spkr*		at audio?		# PC speaker (synthesized)
188
189#pseudo-device	cgd			# cryptographic disk devices
190pseudo-device	md			# memory disk device (ramdisk)
191pseudo-device	vnd			# disk-like interface to files
192#options 	VND_COMPRESSION		# compressed vnd(4)
193
194# network pseudo-devices
195pseudo-device	bpfilter		# Berkeley packet filter
196#pseudo-device	carp			# Common Address Redundancy Protocol
197#pseudo-device	ipfilter		# IP filter (firewall) and NAT
198pseudo-device	loop			# network loopback
199#pseudo-device	ppp			# Point-to-Point Protocol
200#pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
201#pseudo-device	sl			# Serial Line IP
202#pseudo-device	tun			# network tunneling over tty
203#pseudo-device	tap			# virtual Ethernet
204#pseudo-device	gre			# generic L3 over IP tunnel
205#pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
206#pseudo-device	faith			# IPv[46] tcp relay translation i/f
207#pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
208#pseudo-device	vlan			# IEEE 802.1q encapsulation
209#pseudo-device	bridge			# simple inter-network bridging
210#options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
211#pseudo-device	agr			# IEEE 802.3ad link aggregation
212
213#
214# accept filters
215pseudo-device   accf_data		# "dataready" accept filter
216pseudo-device   accf_http		# "httpready" accept filter
217
218# miscellaneous pseudo-devices
219pseudo-device	pty			# pseudo-terminals
220pseudo-device	clockctl		# user control of clock subsystem
221pseudo-device	wsmux			# mouse & keyboard multiplexor
222pseudo-device	ksyms			# /dev/ksyms
223#pseudo-device	pf			# PF packet filter
224#pseudo-device	pflog			# PF log if
225
226# Veriexec
227#
228# a pseudo device needed for veriexec
229#pseudo-device	veriexec
230#
231# Uncomment the fingerprint methods below that are desired. Note that
232# removing fingerprint methods will have almost no impact on the kernel
233# code size.
234#
235#options VERIFIED_EXEC_FP_SHA256
236#options VERIFIED_EXEC_FP_SHA384
237#options VERIFIED_EXEC_FP_SHA512
238