8a744de27e
Remove support for booting off of firewire, and for having dcons via firewire in the loader. Kernel support for these things is unchanged. Discussed on arch@ and the current state is not working (and the build was wrong to boot). Sponsored by: Netflix Discussed: https://lists.freebsd.org/archives/freebsd-arch/2022-November/000267.html Reviewed by: kevans, melifaro, emaste Differential Revision: https://reviews.freebsd.org/D37334
28 lines
681 B
Makefile
28 lines
681 B
Makefile
# $FreeBSD$
|
|
|
|
NO_OBJ=t
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
# Almost everything else here relies on btxldr, so we must make sure it's built
|
|
# before everything else proceeds so we don't end up building against a stale
|
|
# btxldr and ending up with a build-during-install scenario.
|
|
SUBDIR.yes+= btx libi386
|
|
SUBDIR.yes+= .WAIT
|
|
|
|
SUBDIR.yes+= mbr pmbr boot0 boot0sio boot2 cdboot gptboot \
|
|
isoboot
|
|
|
|
SUBDIR.${MK_FORTH}+= loader_4th
|
|
SUBDIR.${MK_LOADER_LUA}+= loader_lua
|
|
SUBDIR.yes+= loader_simp
|
|
|
|
# special boot programs, 'self-extracting boot2+loader'
|
|
SUBDIR.yes+= pxeldr
|
|
|
|
SUBDIR.${MK_LOADER_ZFS}+= zfsboot gptzfsboot
|
|
|
|
SUBDIR_DEPEND_pxeldr+= loader_${LOADER_DEFAULT_INTERP}
|
|
|
|
.include <bsd.subdir.mk>
|