XENHVM revision 189027
1#
2# XENHVM -- Xen HVM kernel configuration file for FreeBSD/amd64
3#
4# For more information on this file, please read the handbook section on
5# Kernel Configuration Files:
6#
7#    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
8#
9# The handbook is also available locally in /usr/share/doc/handbook
10# if you've installed the doc distribution, otherwise always see the
11# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
12# latest information.
13#
14# An exhaustive list of options and more detailed explanations of the
15# device lines is also present in the ../../conf/NOTES and NOTES files.
16# If you are in doubt as to the purpose or necessity of a line, check first
17# in NOTES.
18#
19# $FreeBSD$
20
21cpu		HAMMER
22ident		XENHVM
23
24# To statically compile in device wiring instead of /boot/device.hints
25#hints		"GENERIC.hints"		# Default places to look for devices.
26
27makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
28makeoptions	MODULES_OVERRIDE=""
29
30options 	SCHED_ULE		# ULE scheduler
31options 	PREEMPTION		# Enable kernel thread preemption
32options 	INET			# InterNETworking
33options 	INET6			# IPv6 communications protocols
34options 	SCTP			# Stream Control Transmission Protocol 
35options 	FFS			# Berkeley Fast Filesystem
36options 	SOFTUPDATES		# Enable FFS soft updates support
37options 	UFS_ACL			# Support for access control lists
38options 	UFS_DIRHASH		# Improve performance on big directories
39options 	UFS_GJOURNAL		# Enable gjournal-based UFS journaling
40options 	MD_ROOT			# MD is a potential root device
41options 	NFSCLIENT		# Network Filesystem Client
42options 	NFSSERVER		# Network Filesystem Server
43options 	NFSLOCKD		# Network Lock Manager
44options 	NFS_ROOT		# NFS usable as /, requires NFSCLIENT
45options 	NTFS			# NT File System
46options 	MSDOSFS			# MSDOS Filesystem
47options 	CD9660			# ISO 9660 Filesystem
48options 	PROCFS			# Process filesystem (requires PSEUDOFS)
49options 	PSEUDOFS		# Pseudo-filesystem framework
50options 	GEOM_PART_GPT		# GUID Partition Tables.
51options 	GEOM_LABEL		# Provides labelization
52options 	COMPAT_43TTY		# BSD 4.3 TTY compat [KEEP THIS!]
53options 	COMPAT_IA32		# Compatible with i386 binaries
54options 	COMPAT_FREEBSD4		# Compatible with FreeBSD4
55options 	COMPAT_FREEBSD5		# Compatible with FreeBSD5
56options 	COMPAT_FREEBSD6		# Compatible with FreeBSD6
57options 	SCSI_DELAY=5000		# Delay (in ms) before probing SCSI
58options 	KTRACE			# ktrace(1) support
59options 	STACK			# stack(9) support
60options 	SYSVSHM			# SYSV-style shared memory
61options 	SYSVMSG			# SYSV-style message queues
62options 	SYSVSEM			# SYSV-style semaphores
63options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
64options 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
65options 	ADAPTIVE_GIANT		# Giant mutex is adaptive.
66options 	STOP_NMI		# Stop CPUS using NMI instead of IPI
67options 	AUDIT			# Security event auditing
68#options 	KDTRACE_FRAME		# Ensure frames are compiled in
69#options 	KDTRACE_HOOKS		# Kernel DTrace hooks
70
71options		KDB
72options		DDB
73options		GDB
74
75# Make an SMP-capable kernel by default
76options 	SMP			# Symmetric MultiProcessor Kernel
77
78# CPU frequency control
79device		cpufreq
80
81# Bus support.
82device		acpi
83device		pci
84
85# Floppy drives
86device		fdc
87
88# Xen HVM support
89options		XENHVM
90device		xenpci
91
92# ATA and ATAPI devices
93device		ata
94device		atadisk		# ATA disk drives
95device		ataraid		# ATA RAID drives
96device		atapicd		# ATAPI CDROM drives
97device		atapifd		# ATAPI floppy drives
98device		atapist		# ATAPI tape drives
99options 	ATA_STATIC_ID	# Static device numbering
100
101# SCSI peripherals
102device		scbus		# SCSI bus (required for SCSI)
103device		ch		# SCSI media changers
104device		da		# Direct Access (disks)
105device		sa		# Sequential Access (tape etc)
106device		cd		# CD
107device		pass		# Passthrough device (direct SCSI access)
108device		ses		# SCSI Environmental Services (and SAF-TE)
109
110# atkbdc0 controls both the keyboard and the PS/2 mouse
111device		atkbdc		# AT keyboard controller
112device		atkbd		# AT keyboard
113device		psm		# PS/2 mouse
114
115device		kbdmux		# keyboard multiplexer
116
117device		vga		# VGA video card driver
118
119device		splash		# Splash screen and screen saver support
120
121# syscons is the default console driver, resembling an SCO console
122device		sc
123
124device		agp		# support several AGP chipsets
125
126# Serial (COM) ports
127device		sio		# 8250, 16[45]50 based serial ports
128device		uart		# Generic UART driver
129
130# PCI Ethernet NICs that use the common MII bus controller code.
131# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
132device		miibus		# MII bus support
133device		re		# RealTek 8139C+/8169/8169S/8110S
134
135# Pseudo devices.
136device		loop		# Network loopback
137device		random		# Entropy device
138device		ether		# Ethernet support
139device		sl		# Kernel SLIP
140device		ppp		# Kernel PPP
141device		tun		# Packet tunnel.
142device		pty		# Pseudo-ttys (telnet etc)
143device		md		# Memory "disks"
144device		gif		# IPv6 and IPv4 tunneling
145device		faith		# IPv6-to-IPv4 relaying (translation)
146device		firmware	# firmware assist module
147
148# The `bpf' device enables the Berkeley Packet Filter.
149# Be aware of the administrative consequences of enabling this!
150# Note that 'bpf' is required for DHCP.
151device		bpf		# Berkeley packet filter
152
153