9ae529ec5d
2619 asynchronous destruction of ZFS file systems 2747 SPA versioning with zfs feature flags Reviewed by: Matt Ahrens <mahrens@delphix.com> Reviewed by: George Wilson <gwilson@delphix.com> Reviewed by: Richard Lowe <richlowe@richlowe.net> Reviewed by: Dan Kruchinin <dan.kruchinin@gmail.com> Approved by: Eric Schrock <Eric.Schrock@delphix.com> References: illumos/illumos-gate@53089ab7c8 illumos/illumos-gate@ad135b5d64 illumos changeset: 13700:2889e2596bd6 https://www.illumos.org/issues/2619 https://www.illumos.org/issues/2747 NOTE: The grub specific changes were not ported. This change must be made to the Linux grub packages. Ported-by: Brian Behlendorf <behlendorf1@llnl.gov>
34 lines
888 B
Makefile
34 lines
888 B
Makefile
SUBDIRS = linux sys
|
|
|
|
COMMON_H = \
|
|
$(top_srcdir)/include/zfeature_common.h \
|
|
$(top_srcdir)/include/zfs_comutil.h \
|
|
$(top_srcdir)/include/zfs_deleg.h \
|
|
$(top_srcdir)/include/zfs_fletcher.h \
|
|
$(top_srcdir)/include/zfs_namecheck.h \
|
|
$(top_srcdir)/include/zfs_prop.h \
|
|
$(top_srcdir)/include/zpios-ctl.h
|
|
|
|
KERNEL_H = \
|
|
$(top_srcdir)/include/zpios-internal.h
|
|
|
|
USER_H = \
|
|
$(top_srcdir)/include/libnvpair.h \
|
|
$(top_srcdir)/include/libuutil_common.h \
|
|
$(top_srcdir)/include/libuutil.h \
|
|
$(top_srcdir)/include/libuutil_impl.h \
|
|
$(top_srcdir)/include/libzfs.h \
|
|
$(top_srcdir)/include/libzfs_impl.h
|
|
|
|
EXTRA_DIST = $(COMMON_H) $(KERNEL_H) $(USER_H)
|
|
|
|
if CONFIG_USER
|
|
libzfsdir = $(includedir)/libzfs
|
|
libzfs_HEADERS = $(COMMON_H) $(USER_H)
|
|
endif
|
|
|
|
if CONFIG_KERNEL
|
|
kerneldir = /usr/src/zfs-$(ZFS_META_VERSION)-$(ZFS_META_RELEASE)/$(LINUX_VERSION)
|
|
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
|
endif
|