10b9d77bf1
Few new things available from now on: - Data deduplication. - Triple parity RAIDZ (RAIDZ3). - zfs diff. - zpool split. - Snapshot holds. - zpool import -F. Allows to rewind corrupted pool to earlier transaction group. - Possibility to import pool in read-only mode. MFC after: 1 month
30 lines
719 B
Makefile
30 lines
719 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../cddl/compat/opensolaris/kern
|
|
|
|
KMOD= opensolaris
|
|
SRCS= opensolaris.c \
|
|
opensolaris_cmn_err.c \
|
|
opensolaris_kmem.c \
|
|
opensolaris_misc.c \
|
|
opensolaris_sunddi.c
|
|
|
|
_A=${.CURDIR}/../../cddl/contrib/opensolaris/common/atomic
|
|
.if exists(${_A}/${MACHINE_CPUARCH}/opensolaris_atomic.S)
|
|
.PATH: ${_A}/${MACHINE_CPUARCH}
|
|
SRCS+= opensolaris_atomic.S
|
|
.elif exists(${_A}/${MACHINE_ARCH}/opensolaris_atomic.S)
|
|
.PATH: ${_A}/${MACHINE_ARCH}
|
|
SRCS+= opensolaris_atomic.S
|
|
.else
|
|
SRCS+= opensolaris_atomic.c
|
|
.endif
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../cddl/compat/opensolaris \
|
|
-I${.CURDIR}/../../cddl/contrib/opensolaris/uts/common \
|
|
-I${.CURDIR}/../..
|
|
|
|
IGNORE_PRAGMA= 1
|
|
|
|
.include <bsd.kmod.mk>
|