mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 14:21:18 +01:00
eda28feb2e
When VECTX is enabled as a kernel option and non-EFI loaders are built, many reads will fail due to the mis-match of whether LOADER_VERIEXEC_VECTX or not in readin.h. Source that includes bootstrap.h must ensure the kernel option agrees with the compile time CFLAGS in the various make related files. Submitted by: bret_ketchum@dell.com (original revision) Reviewed by: sjg, bdrewery, dab, bret_ketchum@dell.com MFC after: 1 week Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D29993
23 lines
430 B
Makefile
23 lines
430 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${SYSDIR}/contrib/libfdt/
|
|
|
|
LIB= fdt
|
|
|
|
# Vendor sources of libfdt.
|
|
SRCS+= fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c \
|
|
fdt_empty_tree.c fdt_addresses.c fdt_overlay.c
|
|
|
|
# Loader's fdt commands extension sources.
|
|
SRCS+= fdt_loader_cmd.c
|
|
|
|
CFLAGS+= -I${SYSDIR}/contrib/libfdt/ -I${LDRSRC}
|
|
|
|
CFLAGS+= -Wformat -Wall
|
|
|
|
.include "${BOOTSRC}/veriexec.mk"
|
|
|
|
.include <bsd.lib.mk>
|