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
21 lines
326 B
Makefile
21 lines
326 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
LIB= firewire
|
|
|
|
.PATH: ${SYSDIR}/dev/dcons ${SYSDIR}/dev/firewire
|
|
SRCS+= firewire.c fwohci.c dconsole.c
|
|
SRCS+= dcons.c fwcrom.c
|
|
|
|
.include "${BOOTSRC}/veriexec.mk"
|
|
|
|
CFLAGS+= -D_BOOT
|
|
|
|
CFLAGS+= -I${LDRSRC}
|
|
CFLAGS+= -I${BOOTSRC}/i386/libi386
|
|
|
|
CFLAGS+= -Wformat -Wall
|
|
|
|
.include <bsd.lib.mk>
|