This is effectively a direct commit to stable/11, due to differences between stable/11 and head. Changes to DTS in sys/boot/fdt/dts were often accompanied by kernel changes. Many of these were also risc-v updates that likely had many more dependencies to MFC. Because of this, sys/boot/fdt/dts remains as-is while everything else in sys/boot relocates to stand/. r325834: Move sys/boot to stand. Fix all references to new location r325997: Remove empty directories. r326502: Document the sys/boot -> stand move in hier.7 and the top-level README.
15 lines
166 B
Makefile
15 lines
166 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= bhyveload
|
|
SRCS= bhyveload.c
|
|
MAN= bhyveload.8
|
|
PACKAGE= bhyve
|
|
|
|
LIBADD= vmmapi
|
|
|
|
WARNS?= 3
|
|
|
|
CFLAGS+=-I${SRCTOP}/stand/userboot
|
|
|
|
.include <bsd.prog.mk>
|