Change zfs-kmod-devel install path
Install the common zfs kernel development headers under /usr/src/zfs-<version>/ rather than in a kernel specific directory. The kernel specific build products such as zfs_config.h and Modules.symvers are left installed under /usr/src/zfs-<version>/<kernel>. This was done to be consistent with where dkms expects kernel module source to be packaged. It also allows for a common zfs-kmod-devel package which includes the headers, and per-kernel zfs-kmod-devel-<kernel> packages. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
parent
d69b2dee71
commit
775f2d34a3
16
Makefile.am
16
Makefile.am
|
@ -8,6 +8,12 @@ SUBDIRS += dracut udev etc man scripts lib cmd
|
||||||
endif
|
endif
|
||||||
if CONFIG_KERNEL
|
if CONFIG_KERNEL
|
||||||
SUBDIRS += module
|
SUBDIRS += module
|
||||||
|
|
||||||
|
extradir = /usr/src/zfs-$(VERSION)
|
||||||
|
extra_HEADERS = zfs.release.in zfs_config.h.in
|
||||||
|
|
||||||
|
kerneldir = /usr/src/zfs-$(VERSION)/$(LINUX_VERSION)
|
||||||
|
nodist_kernel_HEADERS = zfs.release zfs_config.h module/$(LINUX_SYMBOLS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
AUTOMAKE_OPTIONS = foreign
|
||||||
|
@ -15,7 +21,6 @@ EXTRA_DIST = autogen.sh zfs.spec.in zfs-modules.spec.in
|
||||||
EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
|
EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
|
||||||
EXTRA_DIST += META DISCLAIMER COPYRIGHT README.markdown OPENSOLARIS.LICENSE
|
EXTRA_DIST += META DISCLAIMER COPYRIGHT README.markdown OPENSOLARIS.LICENSE
|
||||||
EXTRA_DIST += dkms.postinst copy-builtin
|
EXTRA_DIST += dkms.postinst copy-builtin
|
||||||
noinst_HEADERS = zfs_config.h zfs.release
|
|
||||||
|
|
||||||
distclean-local::
|
distclean-local::
|
||||||
-$(RM) -R autom4te*.cache
|
-$(RM) -R autom4te*.cache
|
||||||
|
@ -29,15 +34,6 @@ distclean-local::
|
||||||
-o -name '*.order' -o -name '*.markers' \) \
|
-o -name '*.order' -o -name '*.markers' \) \
|
||||||
-type f -print | xargs $(RM)
|
-type f -print | xargs $(RM)
|
||||||
|
|
||||||
if CONFIG_KERNEL
|
|
||||||
install-data-local:
|
|
||||||
release=$(ZFS_META_VERSION)-$(ZFS_META_RELEASE); \
|
|
||||||
instdest=$(DESTDIR)/usr/src/zfs-$$release/$(LINUX_VERSION); \
|
|
||||||
for instfile in $(noinst_HEADERS) module/$(LINUX_SYMBOLS); do \
|
|
||||||
$(INSTALL) -m 644 -D $$instfile $$instdest/$$instfile; \
|
|
||||||
done
|
|
||||||
endif
|
|
||||||
|
|
||||||
ctags:
|
ctags:
|
||||||
$(RM) $(top_srcdir)/tags
|
$(RM) $(top_srcdir)/tags
|
||||||
find $(top_srcdir) -name .git -prune -o -name '*.[hc]' | xargs ctags
|
find $(top_srcdir) -name .git -prune -o -name '*.[hc]' | xargs ctags
|
||||||
|
|
|
@ -28,6 +28,6 @@ libzfs_HEADERS = $(COMMON_H) $(USER_H)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if CONFIG_KERNEL
|
if CONFIG_KERNEL
|
||||||
kerneldir = /usr/src/zfs-$(ZFS_META_VERSION)-$(ZFS_META_RELEASE)/$(LINUX_VERSION)
|
kerneldir = /usr/src/zfs-$(VERSION)/include
|
||||||
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -16,6 +16,6 @@ libzfs_HEADERS = $(COMMON_H) $(USER_H)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if CONFIG_KERNEL
|
if CONFIG_KERNEL
|
||||||
kerneldir = /usr/src/zfs-$(ZFS_META_VERSION)-$(ZFS_META_RELEASE)/$(LINUX_VERSION)/linux
|
kerneldir = /usr/src/zfs-$(VERSION)/include/linux
|
||||||
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -91,6 +91,6 @@ libzfs_HEADERS = $(COMMON_H) $(USER_H)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if CONFIG_KERNEL
|
if CONFIG_KERNEL
|
||||||
kerneldir = /usr/src/zfs-$(ZFS_META_VERSION)-$(ZFS_META_RELEASE)/$(LINUX_VERSION)/sys
|
kerneldir = /usr/src/zfs-$(VERSION)/include/sys
|
||||||
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -16,6 +16,6 @@ libzfs_HEADERS = $(COMMON_H) $(USER_H)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if CONFIG_KERNEL
|
if CONFIG_KERNEL
|
||||||
kerneldir = /usr/src/zfs-$(ZFS_META_VERSION)-$(ZFS_META_RELEASE)/$(LINUX_VERSION)/sys/fm
|
kerneldir = /usr/src/zfs-$(VERSION)/include/sys/fm
|
||||||
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -13,6 +13,6 @@ libzfs_HEADERS = $(COMMON_H) $(USER_H)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if CONFIG_KERNEL
|
if CONFIG_KERNEL
|
||||||
kerneldir = /usr/src/zfs-$(ZFS_META_VERSION)-$(ZFS_META_RELEASE)/$(LINUX_VERSION)/sys/fm/fs
|
kerneldir = /usr/src/zfs-$(VERSION)/include/sys/fm/fs
|
||||||
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -13,6 +13,6 @@ libzfs_HEADERS = $(COMMON_H) $(USER_H)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if CONFIG_KERNEL
|
if CONFIG_KERNEL
|
||||||
kerneldir = /usr/src/zfs-$(ZFS_META_VERSION)-$(ZFS_META_RELEASE)/$(LINUX_VERSION)/sys/fs
|
kerneldir = /usr/src/zfs-$(VERSION)/include/sys/fs
|
||||||
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
kernel_HEADERS = $(COMMON_H) $(KERNEL_H)
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue