summaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authormaxv <maxv@NetBSD.org>2019-02-23 12:27:00 +0000
committermaxv <maxv@NetBSD.org>2019-02-23 12:27:00 +0000
commit107d29be2a07c625f5cb59013413552acec78404 (patch)
tree28fe828b15db5ba3e84b7b80a3b8a7526a16d845 /sys/modules
parenta3a49414b8f07c9920ecea0b28bdd80e17e8014b (diff)
Install the x86 RESET state at VCPU creation time, for convenience, so
that the libnvmm users can expect a functional VCPU right away.
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/nvmm/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/modules/nvmm/Makefile b/sys/modules/nvmm/Makefile
index ff2cf5442a7..ee0a53b0466 100644
--- a/sys/modules/nvmm/Makefile
+++ b/sys/modules/nvmm/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2019/02/17 04:05:55 rin Exp $
+# $NetBSD: Makefile,v 1.4 2019/02/23 12:27:00 maxv Exp $
.include "../Makefile.inc"
.include "../Makefile.assym"
@@ -13,6 +13,7 @@ IOCONF= nvmm.ioconf
SRCS= nvmm.c
.if ${MACHINE_ARCH} == "x86_64"
+SRCS+= nvmm_x86.c
SRCS+= nvmm_x86_svm.c nvmm_x86_svmfunc.S
SRCS+= nvmm_x86_vmx.c nvmm_x86_vmxfunc.S
.endif