View | Details | Raw Unified | Return to bug 212711 | Differences between
and this patch

Collapse All | Expand All

(-)usr.sbin/bhyve/Makefile (+3 lines)
Lines 14-19 BHYVE_SYSDIR?=${SRCTOP} Link Here
14
SRCS=	\
14
SRCS=	\
15
	atkbdc.c		\
15
	atkbdc.c		\
16
	acpi.c			\
16
	acpi.c			\
17
	audio.c			\
17
	bhyvegc.c		\
18
	bhyvegc.c		\
18
	bhyverun.c		\
19
	bhyverun.c		\
19
	block_if.c		\
20
	block_if.c		\
Lines 22-27 SRCS= \ Link Here
22
	consport.c		\
23
	consport.c		\
23
	dbgport.c		\
24
	dbgport.c		\
24
	fwctl.c			\
25
	fwctl.c			\
26
	hda_codec.c		\
25
	inout.c			\
27
	inout.c			\
26
	ioapic.c		\
28
	ioapic.c		\
27
	mem.c			\
29
	mem.c			\
Lines 31-36 SRCS= \ Link Here
31
	pci_e82545.c		\
33
	pci_e82545.c		\
32
	pci_emul.c		\
34
	pci_emul.c		\
33
	pci_fbuf.c		\
35
	pci_fbuf.c		\
36
	pci_hda.c		\
34
	pci_hostbridge.c	\
37
	pci_hostbridge.c	\
35
	pci_irq.c		\
38
	pci_irq.c		\
36
	pci_lpc.c		\
39
	pci_lpc.c		\
(-)usr.sbin/bhyve/virtio.h (-1 / +1 lines)
Lines 209-215 struct vring_used { Link Here
209
#define	VIRTIO_VENDOR		0x1AF4
209
#define	VIRTIO_VENDOR		0x1AF4
210
#define	VIRTIO_DEV_NET		0x1000
210
#define	VIRTIO_DEV_NET		0x1000
211
#define	VIRTIO_DEV_BLOCK	0x1001
211
#define	VIRTIO_DEV_BLOCK	0x1001
212
#define	VIRTIO_DEV_RANDOM	0x1002
212
#define	VIRTIO_DEV_RANDOM	0x1005
213
213
214
/*
214
/*
215
 * PCI config space constants.
215
 * PCI config space constants.

Return to bug 212711