diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2024-07-14 16:12:01 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2024-07-14 18:29:14 +0000 |
| commit | 7cd91315911d3413ccf527228d4b8c060b681fba (patch) | |
| tree | 04620568fb57f4c9bcaa0db6db840137600933c8 /sys/modules/vmm | |
| parent | 82dfbaf7e7ca1334960ee918fa1b4eb2537d444b (diff) | |
Diffstat (limited to 'sys/modules/vmm')
| -rw-r--r-- | sys/modules/vmm/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/modules/vmm/Makefile b/sys/modules/vmm/Makefile index 8f6eb915290a..96155753f1de 100644 --- a/sys/modules/vmm/Makefile +++ b/sys/modules/vmm/Makefile @@ -3,8 +3,13 @@ KMOD= vmm -SRCS= opt_acpi.h opt_bhyve_snapshot.h opt_ddb.h \ - acpi_if.h bus_if.h device_if.h pci_if.h pcib_if.h vnode_if.h +.if ${MACHINE_CPUARCH} == "amd64" +SRCS+= opt_acpi.h \ + opt_bhyve_snapshot.h \ + opt_ddb.h +.endif + +SRCS+= acpi_if.h bus_if.h device_if.h pci_if.h pcib_if.h vnode_if.h CFLAGS+= -DVMM_KEEP_STATS CFLAGS+= -I${SRCTOP}/sys/${MACHINE}/vmm |
