mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 01:11:30 -05:00
This is the last part for ARM64 Hyper-V enablement. This includes commone files and make file changes to enable the ARM64 FreeBSD guest on Hyper-V. With this patch, it should be able to build the ARM64 image and install it on Hyper-V. Reviewed by: emaste, andrew, whu Tested by: Souradeep Chakrabarti <schakrabarti@microsoft.com> Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D36744
16 lines
322 B
Makefile
16 lines
322 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/hyperv/utilities
|
|
|
|
KMOD= hv_utils
|
|
SRCS= vmbus_ic.c
|
|
SRCS+= hv_kvp.c
|
|
SRCS+= vmbus_heartbeat.c
|
|
SRCS+= vmbus_shutdown.c
|
|
SRCS+= vmbus_timesync.c
|
|
SRCS+= bus_if.h device_if.h vmbus_if.h
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/dev/hyperv/include \
|
|
-I${SRCTOP}/sys/dev/hyperv/vmbus
|
|
|
|
.include <bsd.kmod.mk>
|