1372a368e0
Firmware tables require too much knowledge of system configuration, and it's difficult to pass that information in general terms to a library. The upcoming ACPI work exposed this - it will also livein bhyve. Also, remove code specific to NetApp from the mptable name, and remove the -n option from bhyve. Reviewed by: neel Obtained from: NetApp
23 lines
463 B
Makefile
23 lines
463 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PROG= bhyve
|
|
|
|
SRCS= atpic.c consport.c dbgport.c elcr.c fbsdrun.c inout.c
|
|
SRCS+= instruction_emul.c ioapic.c mem.c mevent.c mptbl.c
|
|
SRCS+= pci_emul.c pci_hostbridge.c pci_passthru.c pci_virtio_block.c
|
|
SRCS+= pci_virtio_net.c pci_uart.c pit_8254.c post.c rtc.c uart.c xmsr.c
|
|
SRCS+= spinup_ap.c
|
|
|
|
NO_MAN=
|
|
|
|
DPADD= ${LIBVMMAPI} ${LIBMD} ${LIBPTHREAD}
|
|
LDADD= -lvmmapi -lmd -lpthread
|
|
|
|
WARNS?= 2
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../sys
|
|
|
|
.include <bsd.prog.mk>
|