1255212Sgonzo#
2255212Sgonzo# GXEMUL "oldtestmips" sample kernel configuration.
3255212Sgonzo#
4255212Sgonzo# $FreeBSD$
5255212Sgonzo#
6255212Sgonzo
7255212Sgonzoident		GXEMUL
8255212Sgonzo
9255212Sgonzomachine		mips mips
10255212Sgonzocpu		CPU_MIPS4KC
11255212Sgonzo
12255212Sgonzooptions 	HZ=100
13255212Sgonzo
14255212Sgonzomakeoptions 	KERNLOADADDR=0x80100000
15255212Sgonzo
16255212Sgonzoinclude		"../gxemul/std.gxemul"
17255212Sgonzo
18255212Sgonzohints		"GXEMUL.hints"		#Default places to look for devices.
19255212Sgonzo
20255212Sgonzomakeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
21255212Sgonzo
22255212Sgonzomakeoptions	MODULES_OVERRIDE=""
23255212Sgonzo
24255212Sgonzooptions 	DDB
25255212Sgonzooptions 	KDB
26255212Sgonzo
27255212Sgonzo# Make an SMP-capable kernel by default
28255212Sgonzooptions 	SMP			# Symmetric MultiProcessor Kernel
29255212Sgonzo
30255212Sgonzooptions 	SCHED_ULE
31255212Sgonzooptions 	INET			# InterNETworking
32255212Sgonzooptions 	INET6			# IPv6 communications protocols
33255212Sgonzo
34255212Sgonzooptions 	FFS			#Berkeley Fast Filesystem
35255212Sgonzo
36255212Sgonzo# Debugging for use in -current
37255212Sgonzo#options 	DEADLKRES		#Enable the deadlock resolver
38255212Sgonzooptions 	INVARIANTS		#Enable calls of extra sanity checking
39255212Sgonzooptions 	INVARIANT_SUPPORT	#Extra sanity checks of internal structures, required by INVARIANTS
40255212Sgonzo#options 	WITNESS			#Enable checks to detect deadlocks and cycles
41255212Sgonzo#options 	WITNESS_SKIPSPIN	#Don't run witness on spinlocks for speed
42255212Sgonzo
43255212Sgonzooptions 	ROOTDEVNAME=\"ufs:gxemul_disk0\"
44255212Sgonzo
45255212Sgonzodevice		gxemul_cons
46255212Sgonzodevice		gxemul_disk
47255212Sgonzodevice		gxemul_ether
48255212Sgonzo
49255212Sgonzo# Pseudo devices.
50255212Sgonzodevice		loop		# Network loopback
51255212Sgonzodevice		random		# Entropy device
52255212Sgonzodevice		ether		# Ethernet support
53255212Sgonzodevice		tun		# Packet tunnel.
54255212Sgonzodevice		md		# Memory "disks"
55255212Sgonzodevice		gif		# IPv6 and IPv4 tunneling
56255212Sgonzo
57255212Sgonzo# The `bpf' device enables the Berkeley Packet Filter.
58255212Sgonzo# Be aware of the administrative consequences of enabling this!
59255212Sgonzo# Note that 'bpf' is required for DHCP.
60255212Sgonzodevice		bpf		# Berkeley packet filter
61