blob: d2a144edddae75fc5523e5958fb9a9260f969a92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $OpenBSD: files.pv,v 1.5 2016/01/07 11:13:19 mikeb Exp $
#
# Config file and device description for paravirtual devices.
# Included by ports that need it.
define pvbus {}
device pvbus
attach pvbus at mainbus
file dev/pv/pvbus.c pvbus needs-flag
# VMware Tools
device vmt
attach vmt at pvbus
file dev/pv/vmt.c vmt needs-flag
# Xen
device xen {}
attach xen at pvbus
file dev/pv/xen.c xen needs-flag
file dev/pv/xenstore.c xen
device xnf: ether, ifnet, ifmedia
attach xnf at xen
file dev/pv/if_xnf.c xnf
|