blob: 22be3a16928871fb8d03fa6f9b7d4218335e9a6f (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# $OpenBSD: files.pv,v 1.9 2016/12/07 15:30:04 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
# Xen Netfront
device xnf: ether, ifnet, ifmedia
attach xnf at xen
file dev/pv/if_xnf.c xnf
# Xen Blkfront
device xbf: scsi
attach xbf at xen
file dev/pv/xbf.c xbf
# Hyper-V
device hyperv {}
attach hyperv at pvbus
file dev/pv/hyperv.c hyperv needs-flag
file dev/pv/hypervic.c hyperv
# Hyper-V NetVSC
device hvn: ether, ifnet, ifmedia
attach hvn at hyperv
file dev/pv/if_hvn.c hvn
|