f61f5a0b2d
This is a primary boot loader that is intended to implement the gptboot partition selection algorithm just like we did for BIOS booting. While the preferred method for UEFI is to use the UEFI Boot Manager protocol, there are situations where that can't be done: some BIOS makers interfere with the protocol in unhelpful ways, there's a new standard for a zero variable write from the client OS, and finally for USB drives that might be mobile between systems with multiple partitions there needs to be a media stable way to select. Reviewed by: tsoome, bcran Differential Revision: https://reviews.freebsd.org/D20547
20 lines
449 B
Makefile
20 lines
449 B
Makefile
# $FreeBSD$
|
|
|
|
NO_OBJ=t
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
# In-tree GCC does not support __attribute__((ms_abi)), but gcc newer
|
|
# than 4.5 supports it.
|
|
.if ${COMPILER_TYPE} != "gcc" || ${COMPILER_VERSION} >= 40500
|
|
|
|
SUBDIR.${MK_FDT}+= fdt
|
|
SUBDIR.yes+= libefi boot1 gptboot
|
|
SUBDIR.${MK_FORTH}+= loader_4th
|
|
SUBDIR.${MK_LOADER_LUA}+= loader_lua
|
|
SUBDIR.yes+= loader_simp
|
|
|
|
.endif # ${COMPILER_TYPE} != "gcc" || ${COMPILER_VERSION} >= 40500
|
|
|
|
.include <bsd.subdir.mk>
|