std.MALTA revision 276736
1276735Srodrigc# MALTA_COMMON -- Common kernel config options for MALTA boards
2276735Srodrigc#
3276735Srodrigc# $FreeBSD: head/sys/mips/conf/MALTA_COMMON 276736 2015-01-06 05:28:22Z rodrigc $
4276735Srodrigc
5276735Srodrigcmachine		mips mipsel	# Malta supports both, so it isn't in std.malta
6276735Srodrigc
7276735Srodrigcoptions 	YAMON
8276735Srodrigc
9276735Srodrigc# Don't build any modules yet.
10276735Srodrigcmakeoptions	MODULES_OVERRIDE=""
11276735Srodrigc
12276735Srodrigcoptions 	TICK_USE_YAMON_FREQ=defined
13276735Srodrigc#options 	TICK_USE_MALTA_RTC=defined
14276735Srodrigc
15276735Srodrigcinclude		"../malta/std.malta"
16276735Srodrigc
17276735Srodrigchints		"MALTA.hints"		#Default places to look for devices.
18276735Srodrigc
19276735Srodrigcmakeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
20276735Srodrigc
21276735Srodrigcoptions 	DDB
22276735Srodrigcoptions 	KDB
23276735Srodrigc
24276735Srodrigcoptions 	SCHED_4BSD		#4BSD scheduler
25276735Srodrigcoptions 	INET			#InterNETworking
26276735Srodrigcoptions 	NFSCL			#Network Filesystem Client
27276735Srodrigcoptions 	NFS_ROOT		#NFS usable as /, requires NFSCL
28276735Srodrigcoptions 	PSEUDOFS		#Pseudo-filesystem framework
29276735Srodrigcoptions 	_KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
30276735Srodrigc
31276735Srodrigcoptions 	FFS			#Berkeley Fast Filesystem
32276735Srodrigcoptions 	SOFTUPDATES		#Enable FFS soft updates support
33276735Srodrigcoptions 	UFS_ACL			#Support for access control lists
34276735Srodrigcoptions 	UFS_DIRHASH		#Improve performance on big directories
35276735Srodrigcoptions 	ROOTDEVNAME=\"ufs:ada0\"
36276735Srodrigc
37276736Srodrigcoptions 	GEOM_LABEL		# Provides labelization
38276736Srodrigcoptions 	GEOM_PART_GPT		# GUID Partition Tables.
39276736Srodrigcoptions 	GEOM_RAID		# Soft RAID functionality.
40276735Srodrigc
41276735Srodrigc# Debugging for use in -current
42276735Srodrigc#options 	DEADLKRES		#Enable the deadlock resolver
43276735Srodrigcoptions 	INVARIANTS		#Enable calls of extra sanity checking
44276735Srodrigcoptions 	INVARIANT_SUPPORT	#Extra sanity checks of internal structures, required by INVARIANTS
45276735Srodrigc#options 	WITNESS			#Enable checks to detect deadlocks and cycles
46276735Srodrigc#options 	WITNESS_SKIPSPIN	#Don't run witness on spinlocks for speed
47276735Srodrigc
48276735Srodrigcdevice		loop
49276735Srodrigcdevice		ether
50276735Srodrigcdevice		le
51276735Srodrigcdevice		miibus
52276735Srodrigcdevice		bpf
53276735Srodrigcdevice		md
54276735Srodrigcdevice		uart
55276735Srodrigcdevice		random
56