f06c961ee3
This adds zfsloader which will be called by zfsboot/gptzfsboot code rather than the tradional loader. This eliminates the need to set the LOADER_ZFS_SUPPORT variable in order to get a ZFS enabled loader. Note however, that you must reinstall your bootcode (zfsboot/gptzfsboot) in order for the boot process to use the new loader. New installations will no longer be required to build a ZFS enabled loader for a working ZFS boot system. Installing zfsboot/gptzfsboot is sufficient for acknowledging the use of CDDL code and therefore the ZFS enabled loader. Based on a previous patch from jhb@ Reviewed by: jhb@ MFC after: 2 weeks
36 lines
756 B
Makefile
36 lines
756 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if ${MK_FORTH} != "no"
|
|
# Build the add-in FORTH interpreter.
|
|
SUBDIR+= ficl
|
|
.endif
|
|
|
|
# Build EFI library.
|
|
.if ${MACHINE_ARCH} == "amd64" || ${MACHINE} == "i386" || ${MACHINE_ARCH} == "ia64"
|
|
SUBDIR+= efi
|
|
.endif
|
|
|
|
# Build Open Firmware library.
|
|
.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64"
|
|
SUBDIR+= ofw
|
|
.endif
|
|
|
|
# Build U-Boot library.
|
|
.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "arm"
|
|
SUBDIR+= uboot
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "amd64" || ${MACHINE} == "i386"
|
|
SUBDIR+= zfs
|
|
.endif
|
|
|
|
# Pick the machine-dependent subdir based on the target architecture.
|
|
ADIR= ${MACHINE:S/amd64/i386/:S/sun4v/sparc64/}
|
|
.if exists(${.CURDIR}/${ADIR}/.)
|
|
SUBDIR+= ${ADIR}
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|