blob: ebb63548c7dd8029f4552b61ba185a205dd2c424 (
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
|
# $OpenBSD: files.pv,v 1.8 2016/10/11 11:46:49 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
# Hyper-V
device hyperv {}
attach hyperv at pvbus
file dev/pv/hyperv.c hyperv needs-flag
file dev/pv/hypervic.c hyperv
device hvn: ether, ifnet, ifmedia
attach hvn at hyperv
file dev/pv/if_hvn.c hvn
|