afae3eed15
I previously disconnected kgzdr based on a misunderstanding. I'd still like to transition to supporting only the loader(8)-based boot path for handling compressed kernels, but that can follow the standard deprecation procedure. This reverts r291113. Requested by: dteske
20 lines
350 B
Makefile
20 lines
350 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= mbr pmbr boot0 boot0sio btx boot2 cdboot gptboot \
|
|
libi386 libfirewire loader
|
|
|
|
# special boot programs, 'self-extracting boot2+loader'
|
|
SUBDIR+= pxeldr
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
|
SUBDIR+= kgzldr
|
|
.endif
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
SUBDIR+= zfsboot gptzfsboot zfsloader
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|