2d9cf57e18
Add first feature "com.delphix:async_destroy" (asynchronous destroy of ZFS datasets). Implement features support in ZFS boot code. Illumos revisions merged: 13700:2889e2596bd6 13701:1949b688d5fb 2619 asynchronous destruction of ZFS file systems 2747 SPA versioning with zfs feature flags References: https://www.illumos.org/issues/2619 https://www.illumos.org/issues/2747 Obtained from: illumos (issue #2619, #2747) MFC after: 1 month
29 lines
398 B
Makefile
29 lines
398 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= ${_dtrace} \
|
|
${_dtruss} \
|
|
${_lockstat} \
|
|
${_zdb} \
|
|
${_zhack}
|
|
|
|
.if ${MK_ZFS} != "no"
|
|
.if ${MK_LIBTHR} != "no"
|
|
_zdb= zdb
|
|
_zhack= zhack
|
|
.endif
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
|
|
_dtrace= dtrace
|
|
_dtruss= dtruss
|
|
_lockstat= lockstat
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "mips"
|
|
_dtrace= dtrace
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|