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
73 lines
1.6 KiB
Makefile
73 lines
1.6 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
LIB= efi
|
|
WARNS?= 2
|
|
|
|
SRCS= delay.c \
|
|
devicename.c \
|
|
devpath.c \
|
|
efi_console.c \
|
|
efi_driver_utils.c \
|
|
efichar.c \
|
|
efienv.c \
|
|
efihttp.c \
|
|
efinet.c \
|
|
efipart.c \
|
|
efizfs.c \
|
|
env.c \
|
|
errno.c \
|
|
handles.c \
|
|
libefi.c \
|
|
wchar.c
|
|
|
|
.PATH: ${SYSDIR}/teken
|
|
SRCS+= teken.c
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
|
|
SRCS+= time.c
|
|
.elif ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "arm" || \
|
|
${MACHINE_CPUARCH} == "riscv"
|
|
SRCS+= time_event.c
|
|
.endif
|
|
|
|
# We implement a slightly non-standard %S in that it always takes a
|
|
# CHAR16 that's common in UEFI-land instead of a wchar_t. This only
|
|
# seems to matter on arm64 where wchar_t defaults to an int instead
|
|
# of a short. There's no good cast to use here so just ignore the
|
|
# warnings for now.
|
|
CWARNFLAGS.efinet.c+= -Wno-format
|
|
CWARNFLAGS.efipart.c+= -Wno-format
|
|
CWARNFLAGS.env.c+= -Wno-format
|
|
|
|
.if ${MACHINE_CPUARCH} == "aarch64"
|
|
CFLAGS+= -mgeneral-regs-only
|
|
.endif
|
|
.if ${MACHINE_ARCH} == "amd64"
|
|
CFLAGS+= -fPIC -mno-red-zone
|
|
.endif
|
|
CFLAGS+= -I${EFIINC}
|
|
CFLAGS+= -I${EFIINCMD}
|
|
CFLAGS.efi_console.c+= -I${SRCTOP}/sys/teken -I${SRCTOP}/contrib/pnglite
|
|
CFLAGS.efi_console.c+= -I${.CURDIR}/../loader
|
|
CFLAGS.teken.c+= -I${SRCTOP}/sys/teken
|
|
.if ${MK_LOADER_ZFS} != "no"
|
|
CFLAGS+= -I${ZFSSRC}
|
|
CFLAGS+= -I${SYSDIR}/cddl/boot/zfs
|
|
CFLAGS+= -I${SYSDIR}/cddl/contrib/opensolaris/uts/common
|
|
CFLAGS+= -DEFI_ZFS_BOOT
|
|
.endif
|
|
|
|
# Pick up the bootstrap header for some interface items
|
|
CFLAGS+= -I${LDRSRC}
|
|
|
|
# Handle FreeBSD specific %b and %D printf format specifiers
|
|
CFLAGS+= ${FORMAT_EXTENSIONS}
|
|
|
|
CFLAGS+= -DTERM_EMU
|
|
|
|
.include "${BOOTSRC}/veriexec.mk"
|
|
|
|
.include <bsd.lib.mk>
|