Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a3420151a0 |
@@ -1,6 +0,0 @@
|
|||||||
[submodule "zfs-debian"]
|
|
||||||
path = zfs-debian
|
|
||||||
url = ../mirror_zfs-debian
|
|
||||||
[submodule "spl-debian"]
|
|
||||||
path = spl-debian
|
|
||||||
url = ../mirror_spl-debian
|
|
||||||
@@ -1,23 +1,23 @@
|
|||||||
RELEASE=5.1
|
RELEASE=4.1
|
||||||
|
|
||||||
# source form https://github.com/zfsonlinux/
|
# source form https://github.com/zfsonlinux/
|
||||||
|
|
||||||
ZFSVER=0.7.9
|
ZFSVER=0.6.5.9
|
||||||
ZFSPKGREL=pve1~bpo9
|
ZFSPKGREL=pve15~bpo80
|
||||||
SPLPKGREL=pve1~bpo9
|
SPLPKGREL=pve8~bpo80
|
||||||
ZFSPKGVER=${ZFSVER}-${ZFSPKGREL}
|
ZFSPKGVER=${ZFSVER}-${ZFSPKGREL}
|
||||||
SPLPKGVER=${ZFSVER}-${SPLPKGREL}
|
SPLPKGVER=${ZFSVER}-${SPLPKGREL}
|
||||||
|
|
||||||
SPLDIR=spl-build
|
SPLDIR=pkg-spl
|
||||||
SPLSRC=spl-debian
|
SPLSRC=pkg-spl.tar.gz
|
||||||
ZFSDIR=zfs-build
|
ZFSDIR=pkg-zfs
|
||||||
ZFSSRC=zfs-debian
|
ZFSSRC=pkg-zfs.tar.gz
|
||||||
|
|
||||||
SPL_DEB = \
|
SPL_DEBS= \
|
||||||
spl_${SPLPKGVER}_amd64.deb
|
spl_${SPLPKGVER}_amd64.deb
|
||||||
|
|
||||||
ZFS_DEB1= libnvpair1linux_${ZFSPKGVER}_amd64.deb
|
ZFS_DEBS= \
|
||||||
ZFS_DEB2= \
|
libnvpair1linux_${ZFSPKGVER}_amd64.deb \
|
||||||
libuutil1linux_${ZFSPKGVER}_amd64.deb \
|
libuutil1linux_${ZFSPKGVER}_amd64.deb \
|
||||||
libzfs2linux_${ZFSPKGVER}_amd64.deb \
|
libzfs2linux_${ZFSPKGVER}_amd64.deb \
|
||||||
libzfslinux-dev_${ZFSPKGVER}_amd64.deb \
|
libzfslinux-dev_${ZFSPKGVER}_amd64.deb \
|
||||||
@@ -25,30 +25,27 @@ libzpool2linux_${ZFSPKGVER}_amd64.deb \
|
|||||||
zfs-dbg_${ZFSPKGVER}_amd64.deb \
|
zfs-dbg_${ZFSPKGVER}_amd64.deb \
|
||||||
zfs-zed_${ZFSPKGVER}_amd64.deb \
|
zfs-zed_${ZFSPKGVER}_amd64.deb \
|
||||||
zfs-initramfs_${ZFSPKGVER}_all.deb \
|
zfs-initramfs_${ZFSPKGVER}_all.deb \
|
||||||
zfs-test_${ZFSPKGVER}_amd64.deb \
|
|
||||||
zfsutils-linux_${ZFSPKGVER}_amd64.deb
|
zfsutils-linux_${ZFSPKGVER}_amd64.deb
|
||||||
ZFS_DEBS= $(ZFS_DEB1) $(ZFS_DEB2)
|
|
||||||
|
|
||||||
DEBS=${SPL_DEB} ${ZFS_DEBS}
|
ZFS_TRANS_DEBS= \
|
||||||
|
libnvpair1_${ZFSPKGVER}_all.deb \
|
||||||
|
libuutil1_${ZFSPKGVER}_all.deb \
|
||||||
|
libzfs2_${ZFSPKGVER}_all.deb \
|
||||||
|
libzpool2_${ZFSPKGVER}_all.deb \
|
||||||
|
zfsutils_${ZFSPKGVER}_all.deb
|
||||||
|
|
||||||
all: deb
|
DEBS=${SPL_DEBS} ${ZFS_DEBS} ${ZFS_TRANS_DEBS}
|
||||||
deb: ${DEBS}
|
|
||||||
|
all: ${DEBS}
|
||||||
|
|
||||||
.PHONY: dinstall
|
.PHONY: dinstall
|
||||||
dinstall: ${DEBS}
|
dinstall: ${DEBS}
|
||||||
dpkg -i ${DEBS}
|
dpkg -i ${DEBS}
|
||||||
|
|
||||||
.PHONY: submodule
|
|
||||||
submodule:
|
|
||||||
test -f "${ZFSSRC}/debian/changelog" || git submodule update --init
|
|
||||||
test -f "${SPLSRC}/debian/changelog" || git submodule update --init
|
|
||||||
|
|
||||||
.PHONY: spl
|
.PHONY: spl
|
||||||
spl: ${SPL_DEB}
|
spl ${SPL_DEBS}: ${SPLSRC}
|
||||||
${SPL_DEB}: ${SPLSRC}
|
|
||||||
rm -rf ${SPLDIR}
|
rm -rf ${SPLDIR}
|
||||||
mkdir ${SPLDIR}
|
tar xf ${SPLSRC}
|
||||||
cp -a ${SPLSRC}/* ${SPLDIR}/
|
|
||||||
mv ${SPLDIR}/debian/changelog ${SPLDIR}/debian/changelog.org
|
mv ${SPLDIR}/debian/changelog ${SPLDIR}/debian/changelog.org
|
||||||
cat spl-changelog.Debian ${SPLDIR}/debian/changelog.org > ${SPLDIR}/debian/changelog
|
cat spl-changelog.Debian ${SPLDIR}/debian/changelog.org > ${SPLDIR}/debian/changelog
|
||||||
cd ${SPLDIR}; ln -s ../spl-patches patches
|
cd ${SPLDIR}; ln -s ../spl-patches patches
|
||||||
@@ -57,12 +54,9 @@ ${SPL_DEB}: ${SPLSRC}
|
|||||||
cd ${SPLDIR}; dpkg-buildpackage -b -uc -us
|
cd ${SPLDIR}; dpkg-buildpackage -b -uc -us
|
||||||
|
|
||||||
.PHONY: zfs
|
.PHONY: zfs
|
||||||
zfs: $(ZFS_DEBS)
|
zfs ${ZFS_DEBS} ${ZFS_TRANS_DEBS}: ${ZFSSRC}
|
||||||
$(ZFS_DEB2): $(ZFS_DEB1)
|
|
||||||
$(ZFS_DEB1): $(ZFSSRC)
|
|
||||||
rm -rf ${ZFSDIR}
|
rm -rf ${ZFSDIR}
|
||||||
mkdir ${ZFSDIR}
|
tar xf ${ZFSSRC}
|
||||||
cp -a ${ZFSSRC}/* ${ZFSDIR}/
|
|
||||||
mv ${ZFSDIR}/debian/changelog ${ZFSDIR}/debian/changelog.org
|
mv ${ZFSDIR}/debian/changelog ${ZFSDIR}/debian/changelog.org
|
||||||
cat zfs-changelog.Debian ${ZFSDIR}/debian/changelog.org > ${ZFSDIR}/debian/changelog
|
cat zfs-changelog.Debian ${ZFSDIR}/debian/changelog.org > ${ZFSDIR}/debian/changelog
|
||||||
cd ${ZFSDIR}; ln -s ../zfs-patches patches
|
cd ${ZFSDIR}; ln -s ../zfs-patches patches
|
||||||
@@ -70,9 +64,19 @@ $(ZFS_DEB1): $(ZFSSRC)
|
|||||||
cd ${ZFSDIR}; rm -rf .pc ./patches
|
cd ${ZFSDIR}; rm -rf .pc ./patches
|
||||||
cd ${ZFSDIR}; dpkg-buildpackage -b -uc -us
|
cd ${ZFSDIR}; dpkg-buildpackage -b -uc -us
|
||||||
|
|
||||||
|
.PHONY: download
|
||||||
|
download:
|
||||||
|
rm -rf pkg-spl pkg-zfs ${SPLSRC} ${ZFSSRC}
|
||||||
|
# clone pkg-zfsonlinux/spl and checkout 0.6.5.9-1
|
||||||
|
git clone -b debian/0.6.5.9-1 git://anonscm.debian.org/pkg-zfsonlinux/spl.git pkg-spl
|
||||||
|
# clone pkg-zfsonlinux/zfs and checkout 0.6.5.9-2
|
||||||
|
git clone -b debian/0.6.5.9-2 git://anonscm.debian.org/pkg-zfsonlinux/zfs.git pkg-zfs
|
||||||
|
tar czf ${SPLSRC} pkg-spl
|
||||||
|
tar czf ${ZFSSRC} pkg-zfs
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -rf *~ *.deb *.changes *.buildinfo ${ZFSDIR} ${SPLDIR}
|
rm -rf *~ *.deb *.changes ${ZFSDIR} ${SPLDIR}
|
||||||
|
|
||||||
.PHONY: distclean
|
.PHONY: distclean
|
||||||
distclean: clean
|
distclean: clean
|
||||||
@@ -80,4 +84,4 @@ distclean: clean
|
|||||||
|
|
||||||
.PHONY: upload
|
.PHONY: upload
|
||||||
upload: ${DEBS}
|
upload: ${DEBS}
|
||||||
tar -cf - ${DEBS} | ssh repoman@repo.proxmox.com -- upload --product pve,pmg --dist stretch --arch amd64
|
tar -cf - ${DEBS} | ssh repoman@repo.proxmox.com -- upload --product pve --dist jessie
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,59 +1,3 @@
|
|||||||
spl-linux (0.7.9-pve1~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update SPL to 0.7.9
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Fri, 18 May 2018 13:49:09 +0200
|
|
||||||
|
|
||||||
spl-linux (0.7.8-pve1~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update SPL to 0.7.8 (no changes)
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Mon, 30 Apr 2018 13:47:22 +0200
|
|
||||||
|
|
||||||
spl-linux (0.7.7-pve1~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update SPL to 0.7.7
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Tue, 3 Apr 2018 14:28:35 +0200
|
|
||||||
|
|
||||||
spl-linux (0.7.6-pve1~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update SPL to 0.7.6
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Wed, 21 Feb 2018 09:47:54 +0100
|
|
||||||
|
|
||||||
spl-linux (0.7.4-pve1~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update SPL to 0.7.4
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Tue, 19 Dec 2017 12:52:42 +0100
|
|
||||||
|
|
||||||
spl-linux (0.7.3-pve1~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update spl to 0.7.3
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Mon, 6 Nov 2017 09:14:19 +0100
|
|
||||||
|
|
||||||
spl-linux (0.7.2-pve1~bpo90) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update spl to 0.7.2
|
|
||||||
|
|
||||||
* clean up man pages
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Thu, 12 Oct 2017 13:33:04 +0200
|
|
||||||
|
|
||||||
spl-linux (0.6.5.11-pve10~bpo90) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update spl to debian/0.6.5.11-1
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Thu, 27 Jul 2017 13:11:45 +0200
|
|
||||||
|
|
||||||
spl-linux (0.6.5.9-pve9~bpo90) unstable; urgency=medium
|
|
||||||
|
|
||||||
* rebuild for PVE 5.0 / Debian Stretch
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Fri, 10 Mar 2017 09:45:52 +0100
|
|
||||||
|
|
||||||
spl-linux (0.6.5.9-pve8~bpo80) unstable; urgency=medium
|
spl-linux (0.6.5.9-pve8~bpo80) unstable; urgency=medium
|
||||||
|
|
||||||
* update spl to debian/0.6.5.9-1
|
* update spl to debian/0.6.5.9-1
|
||||||
|
|||||||
-1
Submodule spl-debian deleted from e6b66753ff
+14
-34
@@ -1,4 +1,4 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From b750abda7a2b24c52a4fba505571a629223ad64e Mon Sep 17 00:00:00 2001
|
||||||
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
||||||
Date: Wed, 12 Oct 2016 10:57:39 +0200
|
Date: Wed, 12 Oct 2016 10:57:39 +0200
|
||||||
Subject: [PATCH] remove DKMS and module build
|
Subject: [PATCH] remove DKMS and module build
|
||||||
@@ -8,49 +8,29 @@ Content-Transfer-Encoding: 8bit
|
|||||||
|
|
||||||
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
||||||
---
|
---
|
||||||
debian/control | 1 -
|
debian/control.in | 24 --------------------
|
||||||
debian/control.in | 31 -------------------------
|
|
||||||
debian/rules | 68 +------------------------------------------------------
|
debian/rules | 68 +------------------------------------------------------
|
||||||
3 files changed, 1 insertion(+), 99 deletions(-)
|
2 files changed, 1 insertion(+), 91 deletions(-)
|
||||||
|
|
||||||
diff --git a/debian/control b/debian/control
|
|
||||||
index 07db14a..01387e5 100644
|
|
||||||
--- a/debian/control
|
|
||||||
+++ b/debian/control
|
|
||||||
@@ -8,7 +8,6 @@ Build-Depends: autogen,
|
|
||||||
autotools-dev,
|
|
||||||
debhelper (>= 9),
|
|
||||||
dh-autoreconf,
|
|
||||||
- dkms (>> 2.2.0.2-1~),
|
|
||||||
libtool
|
|
||||||
Standards-Version: 4.1.2
|
|
||||||
Homepage: http://www.zfsonlinux.org/
|
|
||||||
diff --git a/debian/control.in b/debian/control.in
|
diff --git a/debian/control.in b/debian/control.in
|
||||||
index 91242a1..5fd81aa 100644
|
index 52c1660..dc6ee96 100644
|
||||||
--- a/debian/control.in
|
--- a/debian/control.in
|
||||||
+++ b/debian/control.in
|
+++ b/debian/control.in
|
||||||
@@ -8,47 +8,16 @@ Build-Depends: autogen,
|
@@ -8,40 +8,16 @@ Build-Depends: autogen,
|
||||||
autotools-dev,
|
autotools-dev,
|
||||||
debhelper (>= 9),
|
debhelper (>= 9),
|
||||||
dh-autoreconf,
|
dh-autoreconf,
|
||||||
- dkms (>> 2.2.0.2-1~),
|
- dkms (>> 2.2.0.2-1~),
|
||||||
libtool
|
libtool
|
||||||
Standards-Version: 4.1.2
|
Standards-Version: 3.9.8
|
||||||
Homepage: http://www.zfsonlinux.org/
|
Homepage: http://www.zfsonlinux.org/
|
||||||
Vcs-Git: git@salsa.debian.org:zfsonlinux-team/spl.git
|
Vcs-Git: git://anonscm.debian.org/pkg-zfsonlinux/spl.git
|
||||||
Vcs-Browser: https://salsa.debian.org/zfsonlinux-team/spl
|
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-zfsonlinux/spl.git
|
||||||
|
|
||||||
-Package: spl-dkms
|
-Package: spl-dkms
|
||||||
-Architecture: all
|
-Architecture: all
|
||||||
-Depends: dkms (>> 2.2.1.0),
|
-Depends: dkms (>> 2.2.1.0), file, libc-dev, lsb-release, ${misc:Depends}
|
||||||
- file,
|
-Recommends: spl (>= ${source:Upstream-Version})
|
||||||
- libc-dev,
|
|
||||||
- libelf-dev,
|
|
||||||
- lsb-release,
|
|
||||||
- ${misc:Depends}
|
|
||||||
-Suggests: spl (>= ${source:Upstream-Version}),
|
|
||||||
- @LINUX_COMPAT@
|
|
||||||
-Conflicts: spl (<< 0.7.9~)
|
|
||||||
-Provides: spl-modules
|
-Provides: spl-modules
|
||||||
-Description: Solaris Porting Layer kernel modules for Linux
|
-Description: Solaris Porting Layer kernel modules for Linux
|
||||||
- The Solaris Porting Layer (SPL) is a Linux kernel module which provides
|
- The Solaris Porting Layer (SPL) is a Linux kernel module which provides
|
||||||
@@ -78,7 +58,7 @@ index 91242a1..5fd81aa 100644
|
|||||||
The Solaris Porting Layer (SPL) is a Linux kernel module which provides
|
The Solaris Porting Layer (SPL) is a Linux kernel module which provides
|
||||||
many of the Solaris kernel APIs. This shim layer makes it possible to
|
many of the Solaris kernel APIs. This shim layer makes it possible to
|
||||||
diff --git a/debian/rules b/debian/rules
|
diff --git a/debian/rules b/debian/rules
|
||||||
index 3a12abc..8dca8fd 100755
|
index b2fc86c..a474ca4 100755
|
||||||
--- a/debian/rules
|
--- a/debian/rules
|
||||||
+++ b/debian/rules
|
+++ b/debian/rules
|
||||||
@@ -14,12 +14,8 @@ ifndef KVERS
|
@@ -14,12 +14,8 @@ ifndef KVERS
|
||||||
@@ -94,7 +74,7 @@ index 3a12abc..8dca8fd 100755
|
|||||||
+ dh $@ --with autoreconf --parallel
|
+ dh $@ --with autoreconf --parallel
|
||||||
|
|
||||||
override_dh_auto_configure:
|
override_dh_auto_configure:
|
||||||
sed "s/@LINUX_COMPAT@/linux-libc-dev \(<< $(shell debian/get_next.sh)\)/" debian/control.in > debian/control
|
@cp debian/control.in debian/control
|
||||||
@@ -45,69 +41,7 @@ override_dh_auto_install:
|
@@ -45,69 +41,7 @@ override_dh_auto_install:
|
||||||
@# This creates the $(CURDIR)/$(NAME)-$(VERSION)/ tree.
|
@# This creates the $(CURDIR)/$(NAME)-$(VERSION)/ tree.
|
||||||
$(MAKE) distdir
|
$(MAKE) distdir
|
||||||
@@ -115,7 +95,7 @@ index 3a12abc..8dca8fd 100755
|
|||||||
override_dh_auto_clean:
|
override_dh_auto_clean:
|
||||||
dh_auto_clean
|
dh_auto_clean
|
||||||
@if test -e META.orig; then mv META.orig META; fi
|
@if test -e META.orig; then mv META.orig META; fi
|
||||||
sed "s/@LINUX_COMPAT@/linux-libc-dev \(<< $(shell debian/get_next.sh)\)/" debian/control.in > debian/control
|
cp debian/control.in debian/control
|
||||||
-
|
-
|
||||||
-# ------------
|
-# ------------
|
||||||
-
|
-
|
||||||
@@ -166,5 +146,5 @@ index 3a12abc..8dca8fd 100755
|
|||||||
-
|
-
|
||||||
- dh_builddeb -p${pmodules}
|
- dh_builddeb -p${pmodules}
|
||||||
--
|
--
|
||||||
2.11.0
|
2.1.4
|
||||||
|
|
||||||
+1
-1
@@ -1 +1 @@
|
|||||||
0001-remove-DKMS-and-module-build.patch
|
fix-control.patch
|
||||||
|
|||||||
@@ -1,91 +1,3 @@
|
|||||||
zfs-linux (0.7.9-pve1~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update ZFS to 0.7.9
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Fri, 18 May 2018 13:49:09 +0200
|
|
||||||
|
|
||||||
zfs-linux (0.7.8-pve1~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update ZFS to 0.7.8 (no changes)
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Mon, 30 Apr 2018 13:47:22 +0200
|
|
||||||
|
|
||||||
zfs-linux (0.7.7-pve2~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* (temporarily) revert likely cause of #7401
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Mon, 9 Apr 2018 09:49:27 +0200
|
|
||||||
|
|
||||||
zfs-linux (0.7.7-pve1~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update ZFS to 0.7.7
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Tue, 3 Apr 2018 14:28:35 +0200
|
|
||||||
|
|
||||||
zfs-linux (0.7.6-pve1~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update ZFS to 0.7.6
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Wed, 21 Feb 2018 09:48:29 +0100
|
|
||||||
|
|
||||||
zfs-linux (0.7.4-pve2~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* cherry-pick ARC hit rate fix from 0.7.6
|
|
||||||
|
|
||||||
* always load ZFS modules on boot
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Fri, 19 Jan 2018 11:31:14 +0100
|
|
||||||
|
|
||||||
zfs-linux (0.7.4-pve1~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update ZFS to 0.7.4
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Tue, 19 Dec 2017 12:52:42 +0100
|
|
||||||
|
|
||||||
zfs-linux (0.7.3-pve1~bpo9) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update ZFS to 0.7.3
|
|
||||||
|
|
||||||
* include fix for user namespace setgid issue (#6800 upstream)
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Mon, 6 Nov 2017 09:14:19 +0100
|
|
||||||
|
|
||||||
zfs-linux (0.7.2-pve1~bpo90) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update zfs to 0.7.2
|
|
||||||
|
|
||||||
* add PR 6616 - zfs send/recv compatibility with 0.6.5
|
|
||||||
|
|
||||||
* add PR 6695 - zfs recv: don't skip over objects which should be freed
|
|
||||||
|
|
||||||
* various small fixes
|
|
||||||
|
|
||||||
* split test suite into zfs-test package
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Thu, 12 Oct 2017 13:34:05 +0200
|
|
||||||
|
|
||||||
zfs-linux (0.6.5.11-pve18~bpo90) unstable; urgency=medium
|
|
||||||
|
|
||||||
* fix #1509: arc_summary error with L2ARC
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Mon, 2 Oct 2017 09:30:41 +0200
|
|
||||||
|
|
||||||
zfs-linux (0.6.5.11-pve17~bpo90) unstable; urgency=medium
|
|
||||||
|
|
||||||
* update zfs to debian/0.6.5.11-1
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Thu, 27 Jul 2017 13:11:45 +0200
|
|
||||||
|
|
||||||
zfs-linux (0.6.5.9-pve16~bpo90) unstable; urgency=medium
|
|
||||||
|
|
||||||
* drop transitional packages
|
|
||||||
|
|
||||||
* convert python scripts to python 3, drop .py suffix
|
|
||||||
|
|
||||||
* rebuild for PVE 5.0 / Debian Stretch
|
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Fri, 10 Mar 2017 09:45:52 +0100
|
|
||||||
|
|
||||||
zfs-linux (0.6.5.9-pve15~bpo80) unstable; urgency=medium
|
zfs-linux (0.6.5.9-pve15~bpo80) unstable; urgency=medium
|
||||||
|
|
||||||
* update zfs to debian/0.6.5.9-1
|
* update zfs to debian/0.6.5.9-1
|
||||||
|
|||||||
-1
Submodule zfs-debian deleted from 6f627d8999
@@ -0,0 +1,174 @@
|
|||||||
|
From b8f3b081a866fc3d529fb2e72c425ef54c4d141d Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
||||||
|
Date: Wed, 11 Jan 2017 09:16:11 +0100
|
||||||
|
Subject: [PATCH 1/6] Undo python changes until PVE 5.0 release
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
Revert "Remove .py extension from utilities in /usr/sbin as per policy 10.4 Scripts (LP: #1628279)"
|
||||||
|
|
||||||
|
This reverts commit e1c956cc55451476c465aad351c4b9c92294fc36.
|
||||||
|
|
||||||
|
Revert "Use python3 for arcstat.py, arc_summary.py & dbufstat.py (LP: #1627909)"
|
||||||
|
|
||||||
|
This reverts commit a52a9356809b8a09b97957a238a36da82ce9f850.
|
||||||
|
|
||||||
|
Revert "Add missing part in python3 move"
|
||||||
|
|
||||||
|
This reverts commit 9173586640d4a9f64f87a70bb9f93e41c78009fc.
|
||||||
|
|
||||||
|
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
||||||
|
---
|
||||||
|
debian/control.in | 4 ++--
|
||||||
|
debian/patches/1001-cmd-python-exec-path.patch | 30 --------------------------
|
||||||
|
debian/control | 4 ++--
|
||||||
|
debian/patches/series | 1 -
|
||||||
|
debian/rules | 11 ++++------
|
||||||
|
debian/zfsutils-linux.install | 6 +++---
|
||||||
|
6 files changed, 11 insertions(+), 45 deletions(-)
|
||||||
|
delete mode 100644 debian/patches/1001-cmd-python-exec-path.patch
|
||||||
|
|
||||||
|
diff --git a/debian/control.in b/debian/control.in
|
||||||
|
index 76907e4..db75496 100644
|
||||||
|
--- a/debian/control.in
|
||||||
|
+++ b/debian/control.in
|
||||||
|
@@ -16,7 +16,7 @@ Build-Depends: dh-autoreconf,
|
||||||
|
po-debconf,
|
||||||
|
uuid-dev,
|
||||||
|
zlib1g-dev,
|
||||||
|
- python3,
|
||||||
|
+ python,
|
||||||
|
dh-python,
|
||||||
|
libblkid-dev,
|
||||||
|
libattr1-dev
|
||||||
|
@@ -127,7 +127,7 @@ Description: OpenZFS root filesystem capabilities for Linux - dracut
|
||||||
|
Package: zfsutils-linux
|
||||||
|
Section: contrib/admin
|
||||||
|
Architecture: linux-any
|
||||||
|
-Depends: ${misc:Depends}, ${shlibs:Depends}, ${python3:Depends}, python3
|
||||||
|
+Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
|
||||||
|
Recommends: lsb-base, zfs-modules | zfs-dkms, zfs-zed
|
||||||
|
Suggests: nfs-kernel-server, samba-common-bin (>= 3.0.23), zfs-initramfs | zfs-dracut
|
||||||
|
Conflicts: zfs, zfs-fuse, zutils
|
||||||
|
diff --git a/debian/patches/1001-cmd-python-exec-path.patch b/debian/patches/1001-cmd-python-exec-path.patch
|
||||||
|
deleted file mode 100644
|
||||||
|
index a05afb4..0000000
|
||||||
|
--- a/debian/patches/1001-cmd-python-exec-path.patch
|
||||||
|
+++ /dev/null
|
||||||
|
@@ -1,30 +0,0 @@
|
||||||
|
-Index: zfs-linux-0.6.5.8/cmd/arc_summary/arc_summary.py
|
||||||
|
-===================================================================
|
||||||
|
---- zfs-linux-0.6.5.8.orig/cmd/arc_summary/arc_summary.py
|
||||||
|
-+++ zfs-linux-0.6.5.8/cmd/arc_summary/arc_summary.py
|
||||||
|
-@@ -1,4 +1,4 @@
|
||||||
|
--#!/usr/bin/python
|
||||||
|
-+#!/usr/bin/python3
|
||||||
|
- #
|
||||||
|
- # $Id: arc_summary.pl,v 388:e27800740aa2 2011-07-08 02:53:29Z jhell $
|
||||||
|
- #
|
||||||
|
-Index: zfs-linux-0.6.5.8/cmd/arcstat/arcstat.py
|
||||||
|
-===================================================================
|
||||||
|
---- zfs-linux-0.6.5.8.orig/cmd/arcstat/arcstat.py
|
||||||
|
-+++ zfs-linux-0.6.5.8/cmd/arcstat/arcstat.py
|
||||||
|
-@@ -1,4 +1,4 @@
|
||||||
|
--#!/usr/bin/python
|
||||||
|
-+#!/usr/bin/python3
|
||||||
|
- #
|
||||||
|
- # Print out ZFS ARC Statistics exported via kstat(1)
|
||||||
|
- # For a definition of fields, or usage, use arctstat.pl -v
|
||||||
|
-Index: zfs-linux-0.6.5.8/cmd/dbufstat/dbufstat.py
|
||||||
|
-===================================================================
|
||||||
|
---- zfs-linux-0.6.5.8.orig/cmd/dbufstat/dbufstat.py
|
||||||
|
-+++ zfs-linux-0.6.5.8/cmd/dbufstat/dbufstat.py
|
||||||
|
-@@ -1,4 +1,4 @@
|
||||||
|
--#!/usr/bin/python
|
||||||
|
-+#!/usr/bin/python3
|
||||||
|
- #
|
||||||
|
- # Print out statistics for all cached dmu buffers. This information
|
||||||
|
- # is available through the dbufs kstat and may be post-processed as
|
||||||
|
diff --git a/debian/control b/debian/control
|
||||||
|
index 76907e4..db75496 100644
|
||||||
|
--- a/debian/control
|
||||||
|
+++ b/debian/control
|
||||||
|
@@ -16,7 +16,7 @@ Build-Depends: dh-autoreconf,
|
||||||
|
po-debconf,
|
||||||
|
uuid-dev,
|
||||||
|
zlib1g-dev,
|
||||||
|
- python3,
|
||||||
|
+ python,
|
||||||
|
dh-python,
|
||||||
|
libblkid-dev,
|
||||||
|
libattr1-dev
|
||||||
|
@@ -127,7 +127,7 @@ Description: OpenZFS root filesystem capabilities for Linux - dracut
|
||||||
|
Package: zfsutils-linux
|
||||||
|
Section: contrib/admin
|
||||||
|
Architecture: linux-any
|
||||||
|
-Depends: ${misc:Depends}, ${shlibs:Depends}, ${python3:Depends}, python3
|
||||||
|
+Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
|
||||||
|
Recommends: lsb-base, zfs-modules | zfs-dkms, zfs-zed
|
||||||
|
Suggests: nfs-kernel-server, samba-common-bin (>= 3.0.23), zfs-initramfs | zfs-dracut
|
||||||
|
Conflicts: zfs, zfs-fuse, zutils
|
||||||
|
diff --git a/debian/patches/series b/debian/patches/series
|
||||||
|
index df85d5b..0fed690 100644
|
||||||
|
--- a/debian/patches/series
|
||||||
|
+++ b/debian/patches/series
|
||||||
|
@@ -4,7 +4,6 @@
|
||||||
|
1000-ppc64el-endian-support.patch
|
||||||
|
1002-fix-mips-build.patch
|
||||||
|
enable-zed.patch
|
||||||
|
-1001-cmd-python-exec-path.patch
|
||||||
|
1004-zed-service-bindir.patch
|
||||||
|
1002-Fix-dev-zfs-device-is-missing.patch
|
||||||
|
0001-fix-booting-via-dracut-generated-initramfs.patch
|
||||||
|
diff --git a/debian/rules b/debian/rules
|
||||||
|
index 9efbace..70e57e5 100755
|
||||||
|
--- a/debian/rules
|
||||||
|
+++ b/debian/rules
|
||||||
|
@@ -35,7 +35,7 @@ pmodules = $(PACKAGE)-modules-$(non_epoch_version)
|
||||||
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||||
|
|
||||||
|
%:
|
||||||
|
- dh $@ --with autoreconf,dkms,python3,systemd --parallel
|
||||||
|
+ dh $@ --with autoreconf,dkms,python2,systemd --parallel
|
||||||
|
|
||||||
|
override_dh_auto_configure:
|
||||||
|
@cp debian/control.in debian/control
|
||||||
|
@@ -64,14 +64,11 @@ override_dh_auto_install:
|
||||||
|
@# Install the utilities.
|
||||||
|
$(MAKE) install DESTDIR='$(CURDIR)/debian/tmp'
|
||||||
|
|
||||||
|
-
|
||||||
|
# Move from bin_dir to /usr/sbin
|
||||||
|
- # Remove suffix (.py) as per policy 10.4 - Scripts
|
||||||
|
- # https://www.debian.org/doc/debian-policy/ch-files.html#s-scripts
|
||||||
|
mkdir -p '$(CURDIR)/debian/tmp/usr/sbin/'
|
||||||
|
- mv '$(CURDIR)/debian/tmp/usr/bin/arc_summary.py' '$(CURDIR)/debian/tmp/usr/sbin/arc_summary'
|
||||||
|
- mv '$(CURDIR)/debian/tmp/usr/bin/arcstat.py' '$(CURDIR)/debian/tmp/usr/sbin/arcstat'
|
||||||
|
- mv '$(CURDIR)/debian/tmp/usr/bin/dbufstat.py' '$(CURDIR)/debian/tmp/usr/sbin/dbufstat'
|
||||||
|
+ mv '$(CURDIR)/debian/tmp/usr/bin/arc_summary.py' '$(CURDIR)/debian/tmp/usr/sbin/arc_summary.py'
|
||||||
|
+ mv '$(CURDIR)/debian/tmp/usr/bin/arcstat.py' '$(CURDIR)/debian/tmp/usr/sbin/arcstat.py'
|
||||||
|
+ mv '$(CURDIR)/debian/tmp/usr/bin/dbufstat.py' '$(CURDIR)/debian/tmp/usr/sbin/dbufstat.py'
|
||||||
|
|
||||||
|
@# Zed has dependencies outside of the system root.
|
||||||
|
$(INSTALL) -d '$(CURDIR)/debian/tmp/usr/sbin/'
|
||||||
|
diff --git a/debian/zfsutils-linux.install b/debian/zfsutils-linux.install
|
||||||
|
index 947ffd9..4badbf1 100644
|
||||||
|
--- a/debian/zfsutils-linux.install
|
||||||
|
+++ b/debian/zfsutils-linux.install
|
||||||
|
@@ -19,9 +19,9 @@ sbin/zdb
|
||||||
|
sbin/zpios
|
||||||
|
sbin/zpool
|
||||||
|
sbin/zfs
|
||||||
|
-usr/sbin/arc_summary
|
||||||
|
-usr/sbin/arcstat
|
||||||
|
-usr/sbin/dbufstat
|
||||||
|
+usr/sbin/arc_summary.py
|
||||||
|
+usr/sbin/arcstat.py
|
||||||
|
+usr/sbin/dbufstat.py
|
||||||
|
usr/share/zfs/
|
||||||
|
usr/share/man/man1/
|
||||||
|
usr/share/man/man5/
|
||||||
|
--
|
||||||
|
2.1.4
|
||||||
|
|
||||||
+59
-99
@@ -1,53 +1,38 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0e7871b8878f78fd2c8c73a50cbf805b39afb4e7 Mon Sep 17 00:00:00 2001
|
||||||
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
||||||
Date: Mon, 6 Feb 2017 11:03:10 +0100
|
Date: Mon, 6 Feb 2017 11:03:10 +0100
|
||||||
Subject: [PATCH] remove DKMS, modules and dracut build
|
Subject: [PATCH 2/6] remove DKMS, modules and dracut build
|
||||||
MIME-Version: 1.0
|
MIME-Version: 1.0
|
||||||
Content-Type: text/plain; charset=UTF-8
|
Content-Type: text/plain; charset=UTF-8
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
||||||
---
|
---
|
||||||
debian/control | 1 -
|
debian/control.in | 34 +++---------------
|
||||||
debian/control.in | 40 ++-----------------
|
debian/rules | 105 ++----------------------------------------------------
|
||||||
debian/not-installed | 2 +
|
2 files changed, 6 insertions(+), 133 deletions(-)
|
||||||
debian/rules | 106 +--------------------------------------------------
|
|
||||||
4 files changed, 7 insertions(+), 142 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/debian/control b/debian/control
|
|
||||||
index 9e4f8fa7..42fbec35 100644
|
|
||||||
--- a/debian/control
|
|
||||||
+++ b/debian/control
|
|
||||||
@@ -9,7 +9,6 @@ Build-Depends: autotools-dev,
|
|
||||||
debhelper (>= 10.2),
|
|
||||||
dh-autoreconf,
|
|
||||||
dh-python,
|
|
||||||
- dkms (>> 2.1.1.2-5),
|
|
||||||
libattr1-dev,
|
|
||||||
libblkid-dev,
|
|
||||||
libselinux1-dev,
|
|
||||||
diff --git a/debian/control.in b/debian/control.in
|
diff --git a/debian/control.in b/debian/control.in
|
||||||
index e193f017..2cb2f614 100644
|
index db75496..22dd958 100644
|
||||||
--- a/debian/control.in
|
--- a/debian/control.in
|
||||||
+++ b/debian/control.in
|
+++ b/debian/control.in
|
||||||
@@ -9,7 +9,6 @@ Build-Depends: autotools-dev,
|
@@ -9,7 +9,6 @@ Build-Depends: dh-autoreconf,
|
||||||
debhelper (>= 10.2),
|
dh-systemd,
|
||||||
dh-autoreconf,
|
autotools-dev,
|
||||||
dh-python,
|
debhelper (>= 9),
|
||||||
- dkms (>> 2.1.1.2-5),
|
- dkms (>> 2.1.1.2-5),
|
||||||
libattr1-dev,
|
|
||||||
libblkid-dev,
|
|
||||||
libselinux1-dev,
|
libselinux1-dev,
|
||||||
@@ -86,26 +85,10 @@ Description: OpenZFS pool library for Linux
|
libtool,
|
||||||
|
lsb-release,
|
||||||
|
@@ -85,25 +84,11 @@ Description: OpenZFS pool library for Linux
|
||||||
.
|
.
|
||||||
This zpool library provides support for managing zpools.
|
This zpool library provides support for managing zpools.
|
||||||
|
|
||||||
-Package: zfs-dkms
|
-Package: zfs-dkms
|
||||||
-Architecture: all
|
-Architecture: all
|
||||||
-Pre-Depends: spl-dkms (<<${source:Upstream-Version}.),
|
-Pre-Depends: spl-dkms (>= ${source:Upstream-Version})
|
||||||
- spl-dkms (>= ${source:Upstream-Version})
|
|
||||||
-Depends: dkms (>> 2.1.1.2-5), lsb-release, ${misc:Depends}
|
-Depends: dkms (>> 2.1.1.2-5), lsb-release, ${misc:Depends}
|
||||||
-Recommends: zfs-zed, zfsutils-linux (>= ${binary:Version}), @LINUX_COMPAT@
|
-Recommends: zfsutils-linux, zfs-zed
|
||||||
-Provides: zfs-modules
|
-Provides: zfs-modules
|
||||||
-Description: OpenZFS filesystem kernel modules for Linux
|
-Description: OpenZFS filesystem kernel modules for Linux
|
||||||
- The Z file system is a pooled filesystem designed for maximum data
|
- The Z file system is a pooled filesystem designed for maximum data
|
||||||
@@ -59,22 +44,20 @@ index e193f017..2cb2f614 100644
|
|||||||
-
|
-
|
||||||
Package: zfs-initramfs
|
Package: zfs-initramfs
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: busybox-initramfs | busybox-static | busybox,
|
Depends: initramfs-tools,
|
||||||
initramfs-tools,
|
busybox-initramfs | busybox-static | busybox,
|
||||||
- zfs-modules | zfs-dkms,
|
- zfs-modules | zfs-dkms, zfsutils-linux,
|
||||||
zfsutils-linux (>= ${binary:Version}),
|
+ zfsutils-linux,
|
||||||
${misc:Depends}
|
${misc:Depends}
|
||||||
Description: OpenZFS root filesystem capabilities for Linux - initramfs
|
Description: OpenZFS root filesystem capabilities for Linux - initramfs
|
||||||
@@ -116,29 +99,14 @@ Description: OpenZFS root filesystem capabilities for Linux - initramfs
|
The Z file system is a pooled filesystem designed for maximum data
|
||||||
|
@@ -113,23 +98,12 @@ Description: OpenZFS root filesystem capabilities for Linux - initramfs
|
||||||
This package adds OpenZFS to the system initramfs with a hook
|
This package adds OpenZFS to the system initramfs with a hook
|
||||||
for the initramfs-tools infrastructure.
|
for the initramfs-tools infrastructure.
|
||||||
|
|
||||||
-Package: zfs-dracut
|
-Package: zfs-dracut
|
||||||
-Architecture: all
|
-Architecture: all
|
||||||
-Depends: dracut,
|
-Depends: dracut, zfs-modules | zfs-dkms, zfsutils-linux, ${misc:Depends}
|
||||||
- zfs-modules | zfs-dkms,
|
|
||||||
- zfsutils-linux (>= ${binary:Version}),
|
|
||||||
- ${misc:Depends}
|
|
||||||
-Description: OpenZFS root filesystem capabilities for Linux - dracut
|
-Description: OpenZFS root filesystem capabilities for Linux - dracut
|
||||||
- The Z file system is a pooled filesystem designed for maximum data
|
- The Z file system is a pooled filesystem designed for maximum data
|
||||||
- integrity, supporting data snapshots, multiple copies, and data
|
- integrity, supporting data snapshots, multiple copies, and data
|
||||||
@@ -86,52 +69,30 @@ index e193f017..2cb2f614 100644
|
|||||||
Package: zfsutils-linux
|
Package: zfsutils-linux
|
||||||
Section: contrib/admin
|
Section: contrib/admin
|
||||||
Architecture: linux-any
|
Architecture: linux-any
|
||||||
Depends: python3, ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
|
Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
|
||||||
-Recommends: lsb-base, zfs-modules | zfs-dkms, zfs-zed
|
-Recommends: lsb-base, zfs-modules | zfs-dkms, zfs-zed
|
||||||
-Breaks: zfs-dkms (<< ${binary:Version}), zfs-dkms (>> ${binary:Version})
|
-Suggests: nfs-kernel-server, samba-common-bin (>= 3.0.23), zfs-initramfs | zfs-dracut
|
||||||
+Recommends: lsb-base, zfs-zed
|
+Recommends: lsb-base, zfs-zed
|
||||||
Suggests: nfs-kernel-server,
|
+Suggests: nfs-kernel-server, samba-common-bin (>= 3.0.23), zfs-initramfs
|
||||||
samba-common-bin (>= 3.0.23),
|
Conflicts: zfs, zfs-fuse, zutils
|
||||||
- zfs-initramfs | zfs-dracut
|
|
||||||
+ zfs-initramfs
|
|
||||||
Conflicts: zfs, zfs-fuse
|
|
||||||
Provides: zfsutils
|
Provides: zfsutils
|
||||||
Description: command-line tools to manage OpenZFS filesystems
|
Description: command-line tools to manage OpenZFS filesystems
|
||||||
@@ -152,8 +120,7 @@ Description: command-line tools to manage OpenZFS filesystems
|
@@ -143,7 +117,7 @@ Description: command-line tools to manage OpenZFS filesystems
|
||||||
Package: zfs-zed
|
Package: zfs-zed
|
||||||
Section: contrib/admin
|
Section: contrib/admin
|
||||||
Architecture: linux-any
|
Architecture: linux-any
|
||||||
-Depends: zfs-modules | zfs-dkms,
|
-Depends: ${misc:Depends}, ${shlibs:Depends}, zfs-modules | zfs-dkms, zfsutils-linux
|
||||||
- zfsutils-linux (>= ${binary:Version}),
|
+Depends: ${misc:Depends}, ${shlibs:Depends}, zfsutils-linux
|
||||||
+Depends: zfsutils-linux (>= ${binary:Version}),
|
|
||||||
${misc:Depends},
|
|
||||||
${shlibs:Depends}
|
|
||||||
Description: OpenZFS Event Daemon
|
Description: OpenZFS Event Daemon
|
||||||
@@ -176,7 +143,6 @@ Depends: acl,
|
The Z file system is a pooled filesystem designed for maximum data
|
||||||
python,
|
integrity, supporting data snapshots, multiple copies, and data
|
||||||
sudo,
|
|
||||||
sysstat,
|
|
||||||
- zfs-modules | zfs-dkms,
|
|
||||||
zfsutils-linux (>=${binary:Version}),
|
|
||||||
${misc:Depends},
|
|
||||||
${shlibs:Depends}
|
|
||||||
diff --git a/debian/not-installed b/debian/not-installed
|
|
||||||
index a008985c..c60b0016 100644
|
|
||||||
--- a/debian/not-installed
|
|
||||||
+++ b/debian/not-installed
|
|
||||||
@@ -6,3 +6,5 @@ etc/zfs/vdev_id.conf.alias.example
|
|
||||||
etc/zfs/vdev_id.conf.multipath.example
|
|
||||||
etc/zfs/vdev_id.conf.sas_direct.example
|
|
||||||
etc/zfs/vdev_id.conf.sas_switch.example
|
|
||||||
+usr/lib/dracut
|
|
||||||
+usr/share/zfs/enum-extract.pl
|
|
||||||
diff --git a/debian/rules b/debian/rules
|
diff --git a/debian/rules b/debian/rules
|
||||||
index e2c5a25f..86b5994d 100755
|
index 70e57e5..0c8a6a2 100755
|
||||||
--- a/debian/rules
|
--- a/debian/rules
|
||||||
+++ b/debian/rules
|
+++ b/debian/rules
|
||||||
@@ -5,9 +5,6 @@ include /usr/share/dpkg/default.mk
|
@@ -5,9 +5,6 @@ NAME := $(shell awk '$$1 == "Name:" { print $$2; }' META)
|
||||||
LSB_DISTRIBUTOR := $(shell lsb_release -is)
|
VERSION := $(shell dpkg-parsechangelog \
|
||||||
NAME := $(shell awk '$$1 == "Name:" { print $$2; }' META)
|
| awk '$$1 == "Version:" { print $$2; }' | cut -d- -f1)
|
||||||
|
|
||||||
-DKMSFILES := module include config zfs.release.in autogen.sh META AUTHORS \
|
-DKMSFILES := module include config zfs.release.in autogen.sh META AUTHORS \
|
||||||
- DISCLAIMER COPYRIGHT OPENSOLARIS.LICENSE README.markdown
|
- DISCLAIMER COPYRIGHT OPENSOLARIS.LICENSE README.markdown
|
||||||
@@ -139,16 +100,16 @@ index e2c5a25f..86b5994d 100755
|
|||||||
ifndef BUILD_UDEB
|
ifndef BUILD_UDEB
|
||||||
BUILD_UDEB=false
|
BUILD_UDEB=false
|
||||||
endif
|
endif
|
||||||
@@ -17,21 +14,16 @@ KVERS=$(shell uname -r)
|
@@ -21,21 +18,16 @@ KVERS=$(shell uname -r)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef SPL
|
ifndef SPL
|
||||||
-SPL=/usr/src/spl-$(DEB_VERSION_UPSTREAM)
|
-SPL=/usr/src/spl-$(VERSION)
|
||||||
-endif
|
-endif
|
||||||
-
|
-
|
||||||
-ifndef SPLOBJ
|
-ifndef SPLOBJ
|
||||||
-SPLOBJ=/var/lib/dkms/spl/$(DEB_VERSION_UPSTREAM)/$(KVERS)/$(DEB_TARGET_GNU_CPU)
|
-SPLOBJ=/var/lib/dkms/spl/$(VERSION)/$(KVERS)/$(shell dpkg-architecture -qDEB_TARGET_GNU_CPU)
|
||||||
+SPL=../spl-build
|
+SPL=../pkg-spl
|
||||||
endif
|
endif
|
||||||
|
|
||||||
non_epoch_version=$(shell echo $(KVERS) | perl -pe 's/^\d+://')
|
non_epoch_version=$(shell echo $(KVERS) | perl -pe 's/^\d+://')
|
||||||
@@ -158,60 +119,59 @@ index e2c5a25f..86b5994d 100755
|
|||||||
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||||
|
|
||||||
%:
|
%:
|
||||||
- dh $@ --with autoreconf,dkms,python3,systemd --parallel
|
- dh $@ --with autoreconf,dkms,python2,systemd --parallel
|
||||||
+ dh $@ --with autoreconf,python3,systemd --parallel
|
+ dh $@ --with autoreconf,python2,systemd --parallel
|
||||||
|
|
||||||
override_dh_auto_configure:
|
override_dh_auto_configure:
|
||||||
sed "s/@LINUX_COMPAT@/linux-libc-dev \(<< $(shell debian/get_next.sh)\)/" debian/control.in > debian/control
|
@cp debian/control.in debian/control
|
||||||
@@ -74,37 +66,6 @@ override_dh_auto_install:
|
@@ -74,36 +66,6 @@ override_dh_auto_install:
|
||||||
$(INSTALL) -d '$(CURDIR)/debian/tmp/usr/sbin/'
|
$(INSTALL) -d '$(CURDIR)/debian/tmp/usr/sbin/'
|
||||||
mv '$(CURDIR)/debian/tmp/sbin/zed' '$(CURDIR)/debian/tmp/usr/sbin/zed'
|
mv '$(CURDIR)/debian/tmp/sbin/zed' '$(CURDIR)/debian/tmp/usr/sbin/zed'
|
||||||
|
|
||||||
- @# Get a bare copy of the source code for DKMS.
|
- @# Get a bare copy of the source code for DKMS.
|
||||||
- @# This creates the $(CURDIR)/$(NAME)-$(DEB_VERSION_UPSTREAM)/ tree, which does not
|
- @# This creates the $(CURDIR)/$(NAME)-$(VERSION)/ tree, which does not
|
||||||
- @# contain the userland sources. NB: Remove-userland-dist-rules.patch
|
- @# contain the userland sources. NB: Remove-userland-dist-rules.patch
|
||||||
- $(MAKE) distdir
|
- $(MAKE) distdir
|
||||||
-
|
-
|
||||||
- @# Install the DKMS source.
|
- @# Install the DKMS source.
|
||||||
- @# We only want the files needed to build the modules
|
- @# We only want the files needed to build the modules
|
||||||
- mkdir -p '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/scripts'
|
- mkdir -p '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(VERSION)'
|
||||||
- cp '$(CURDIR)/scripts/enum-extract.pl' '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/scripts'
|
- $(foreach file,$(DKMSFILES),mv '$(CURDIR)/$(NAME)-$(VERSION)/$(file)' '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(VERSION)' || exit 1;)
|
||||||
- $(foreach file,$(DKMSFILES),mv '$(CURDIR)/$(NAME)-$(DEB_VERSION_UPSTREAM)/$(file)' '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)' || exit 1;)
|
|
||||||
- @# Hellish awk line:
|
- @# Hellish awk line:
|
||||||
- @# * Deletes from configure.ac the parts not needed for building the kernel module
|
- @# * Deletes from configure.ac the parts not needed for building the kernel module
|
||||||
- @# * It deletes from inside AC_CONFIG_FILES([]) everything except:
|
- @# * It deletes from inside AC_CONFIG_FILES([]) everything except:
|
||||||
- @# (Makefile$|include/|module/|*.release$)
|
- @# (Makefile$|include/|module/|*.release$)
|
||||||
- @# * Takes care of spaces and tabs
|
- @# * Takes care of spaces and tabs
|
||||||
- awk '/^AC_CONFIG_FILES\(\[/,/^\]\)/ { if ($$0 !~ /^(AC_CONFIG_FILES\(\[([ \t]+)?$$|\]\)([ \t]+)?$$|([ \t]+)?(include\/|module\/|Makefile([ \t]+)?$$|zfs\.release([ \t]+)?$$))/){next} } {print}' \
|
- awk '/^AC_CONFIG_FILES\(\[/,/^\]\)/ { if ($$0 !~ /^(AC_CONFIG_FILES\(\[([ \t]+)?$$|\]\)([ \t]+)?$$|([ \t]+)?(include\/|module\/|Makefile([ \t]+)?$$|zfs\.release([ \t]+)?$$))/){next} } {print}' \
|
||||||
- '$(CURDIR)/$(NAME)-$(DEB_VERSION_UPSTREAM)/configure.ac' > '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/configure.ac'
|
- '$(CURDIR)/$(NAME)-$(VERSION)/configure.ac' > '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(VERSION)/configure.ac'
|
||||||
- @# Set "SUBDIRS = module include" for CONFIG_KERNEL and remove SUBDIRS for all other configs.
|
- @# Set "SUBDIRS = module include" for CONFIG_KERNEL and remove SUBDIRS for all other configs.
|
||||||
- sed '1,/CONFIG_KERNEL/s/SUBDIRS.*=.*//g;s/SUBDIRS.*=.*/SUBDIRS = module include/g;' \
|
- sed '1,/CONFIG_KERNEL/s/SUBDIRS.*=.*//g;s/SUBDIRS.*=.*/SUBDIRS = module include/g;' \
|
||||||
- '$(CURDIR)/$(NAME)-$(DEB_VERSION_UPSTREAM)/Makefile.am' > '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/Makefile.am'
|
- '$(CURDIR)/$(NAME)-$(VERSION)/Makefile.am' > '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(VERSION)/Makefile.am'
|
||||||
- @# Sanity test
|
- @# Sanity test
|
||||||
- grep -q 'SUBDIRS = module include' '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/Makefile.am'
|
- grep -q 'SUBDIRS = module include' '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(VERSION)/Makefile.am'
|
||||||
- @# Run autogen on the stripped source tree
|
- @# Run autogen on the stripped source tree
|
||||||
- cd '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)'; ./autogen.sh
|
- cd '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(VERSION)'; ./autogen.sh
|
||||||
- rm -fr '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/autom4te.cache'
|
- rm -fr '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(VERSION)/autom4te.cache'
|
||||||
-
|
-
|
||||||
- @# This shunt allows DKMS to install the Module.symvers and zfs_config.h
|
- @# This shunt allows DKMS to install the Module.symvers and zfs_config.h
|
||||||
- @# files to the ${dkms_tree} area through the POST_INSTALL directive.
|
- @# files to the ${dkms_tree} area through the POST_INSTALL directive.
|
||||||
- printf '#!/bin/sh\ncp "$$@"\n' > '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/cp'
|
- printf '#!/bin/sh\ncp "$$@"\n' > '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(VERSION)/cp'
|
||||||
- chmod 755 '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/cp'
|
- chmod 755 '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(VERSION)/cp'
|
||||||
-
|
-
|
||||||
mkdir -p $(CURDIR)/debian/tmp/usr/lib
|
mkdir -p $(CURDIR)/debian/tmp/usr/lib
|
||||||
for i in `ls $(CURDIR)/debian/tmp/lib/*.so`; do \
|
for i in `ls $(CURDIR)/debian/tmp/lib/*.so`; do \
|
||||||
ln -s /lib/`readlink $${i}` $(CURDIR)/debian/tmp/usr/lib/`basename $${i}`; \
|
ln -s /lib/`readlink $${i}` $(CURDIR)/debian/tmp/usr/lib/`basename $${i}`; \
|
||||||
@@ -114,9 +75,6 @@ override_dh_auto_install:
|
@@ -113,9 +75,6 @@ override_dh_auto_install:
|
||||||
chmod a-x $(CURDIR)/debian/tmp/etc/zfs/zfs-functions
|
chmod a-x $(CURDIR)/debian/tmp/etc/zfs/zfs-functions
|
||||||
chmod a-x $(CURDIR)/debian/tmp/etc/default/zfs
|
chmod a-x $(CURDIR)/debian/tmp/etc/default/zfs
|
||||||
|
|
||||||
-override_dh_dkms:
|
-override_dh_dkms:
|
||||||
- dh_dkms -V $(DEB_VERSION_UPSTREAM)
|
- dh_dkms -V $(VERSION)
|
||||||
-
|
-
|
||||||
override_dh_makeshlibs:
|
override_dh_makeshlibs:
|
||||||
dh_makeshlibs -a -V
|
dh_makeshlibs -a
|
||||||
ifeq ($(BUILD_UDEB), true)
|
ifeq ($(BUILD_UDEB), true)
|
||||||
@@ -154,65 +112,5 @@ override_dh_install:
|
@@ -153,65 +112,5 @@ override_dh_install:
|
||||||
|
|
||||||
# ------------
|
# ------------
|
||||||
|
|
||||||
@@ -278,5 +238,5 @@ index e2c5a25f..86b5994d 100755
|
|||||||
debian-copyright:
|
debian-copyright:
|
||||||
cme update dpkg-copyright -file debian/copyright.cme
|
cme update dpkg-copyright -file debian/copyright.cme
|
||||||
--
|
--
|
||||||
2.11.0
|
2.1.4
|
||||||
|
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
From 7e46d0f379706d74d5dc05ff20e58e708a1005a6 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
||||||
|
Date: Wed, 12 Oct 2016 11:32:17 +0200
|
||||||
|
Subject: [PATCH 3/6] add zfsutils.preinst/postinst for wheezy upgrade path
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
||||||
|
---
|
||||||
|
debian/zfsutils-linux.postinst | 20 ++++++++++++++++++++
|
||||||
|
debian/zfsutils-linux.preinst | 17 +++++++++++++++++
|
||||||
|
2 files changed, 37 insertions(+)
|
||||||
|
create mode 100755 debian/zfsutils-linux.postinst
|
||||||
|
create mode 100755 debian/zfsutils-linux.preinst
|
||||||
|
|
||||||
|
diff --git a/debian/zfsutils-linux.postinst b/debian/zfsutils-linux.postinst
|
||||||
|
new file mode 100755
|
||||||
|
index 0000000..7d57919
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/debian/zfsutils-linux.postinst
|
||||||
|
@@ -0,0 +1,20 @@
|
||||||
|
+#!/bin/sh
|
||||||
|
+
|
||||||
|
+set -e
|
||||||
|
+
|
||||||
|
+# Source debconf library
|
||||||
|
+. /usr/share/debconf/confmodule
|
||||||
|
+
|
||||||
|
+if dpkg-maintscript-helper supports rm_conffile 2>/dev/null
|
||||||
|
+then
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/default/zfsload -- "$@"
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/init.d/zfs -- "$@"
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/init.d/zed -- "$@"
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/init.d/zfs-zed -- "$@"
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/init.d/zfs-mount -- "$@"
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/init.d/zfs-share -- "$@"
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/init.d/zfs-import -- "$@"
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+#DEBHELPER#
|
||||||
|
+
|
||||||
|
diff --git a/debian/zfsutils-linux.preinst b/debian/zfsutils-linux.preinst
|
||||||
|
new file mode 100755
|
||||||
|
index 0000000..9338a7c
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/debian/zfsutils-linux.preinst
|
||||||
|
@@ -0,0 +1,17 @@
|
||||||
|
+#!/bin/sh
|
||||||
|
+
|
||||||
|
+set -e
|
||||||
|
+
|
||||||
|
+if dpkg-maintscript-helper supports rm_conffile 2>/dev/null
|
||||||
|
+then
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/default/zfsload -- "$@"
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/init.d/zfs -- "$@"
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/init.d/zed -- "$@"
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/init.d/zfs-zed -- "$@"
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/init.d/zfs-mount -- "$@"
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/init.d/zfs-share -- "$@"
|
||||||
|
+ dpkg-maintscript-helper rm_conffile /etc/init.d/zfs-import -- "$@"
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+#DEBHELPER#
|
||||||
|
+
|
||||||
|
--
|
||||||
|
2.1.4
|
||||||
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
|
||||||
Date: Fri, 19 Jan 2018 12:13:46 +0100
|
|
||||||
Subject: [PATCH] always load ZFS module on boot
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
since zfs-import-scan.service is disabled by default, and
|
|
||||||
zfs-import-cache.service only gets started if a cache file exists, this
|
|
||||||
is needed for zfs-mount, zfs-share and zfs-zed services in case ZFS is
|
|
||||||
not actually used.
|
|
||||||
|
|
||||||
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
|
||||||
---
|
|
||||||
etc/modules-load.d/zfs.conf.in | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/etc/modules-load.d/zfs.conf.in b/etc/modules-load.d/zfs.conf.in
|
|
||||||
index 8b41baa3..59b058c9 100644
|
|
||||||
--- a/etc/modules-load.d/zfs.conf.in
|
|
||||||
+++ b/etc/modules-load.d/zfs.conf.in
|
|
||||||
@@ -1,3 +1,3 @@
|
|
||||||
# Always load kernel modules at boot. The default behavior is to load the
|
|
||||||
# kernel modules in the zfs-import-*.service or when blkid(8) detects a pool.
|
|
||||||
-#zfs
|
|
||||||
+zfs
|
|
||||||
--
|
|
||||||
2.11.0
|
|
||||||
|
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Antonio Russo <antonio.e.russo@gmail.com>
|
|
||||||
Date: Fri, 18 May 2018 18:04:51 -0400
|
|
||||||
Subject: [PATCH] Expand zfs-test and add Breaks/Conflicts
|
|
||||||
|
|
||||||
---
|
|
||||||
debian/control | 4 ++--
|
|
||||||
debian/control.in | 4 ++--
|
|
||||||
debian/tests/control | 2 +-
|
|
||||||
debian/zfs-test.install | 6 +++++-
|
|
||||||
debian/zfsutils-linux.install | 5 +----
|
|
||||||
5 files changed, 11 insertions(+), 10 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/debian/control b/debian/control
|
|
||||||
index 9e4f8fa7..8d85529c 100644
|
|
||||||
--- a/debian/control
|
|
||||||
+++ b/debian/control
|
|
||||||
@@ -180,8 +180,8 @@ Depends: acl,
|
|
||||||
zfsutils-linux (>=${binary:Version}),
|
|
||||||
${misc:Depends},
|
|
||||||
${shlibs:Depends}
|
|
||||||
-Breaks: zfsutils-linux (<= 0.6.5.11-1)
|
|
||||||
-Replaces: zfsutils-linux (<= 0.6.5.11-1)
|
|
||||||
+Breaks: zfsutils-linux (<= 0.7.9-2)
|
|
||||||
+Replaces: zfsutils-linux (<= 0.7.9-2)
|
|
||||||
Conflicts: zutils
|
|
||||||
Description: OpenZFS test infrastructure an support scripts
|
|
||||||
The Z file system is a pooled filesystem designed for maximum data
|
|
||||||
diff --git a/debian/control.in b/debian/control.in
|
|
||||||
index e193f017..9970875e 100644
|
|
||||||
--- a/debian/control.in
|
|
||||||
+++ b/debian/control.in
|
|
||||||
@@ -180,8 +180,8 @@ Depends: acl,
|
|
||||||
zfsutils-linux (>=${binary:Version}),
|
|
||||||
${misc:Depends},
|
|
||||||
${shlibs:Depends}
|
|
||||||
-Breaks: zfsutils-linux (<= 0.6.5.11-1)
|
|
||||||
-Replaces: zfsutils-linux (<= 0.6.5.11-1)
|
|
||||||
+Breaks: zfsutils-linux (<= 0.7.9-2)
|
|
||||||
+Replaces: zfsutils-linux (<= 0.7.9-2)
|
|
||||||
Conflicts: zutils
|
|
||||||
Description: OpenZFS test infrastructure an support scripts
|
|
||||||
The Z file system is a pooled filesystem designed for maximum data
|
|
||||||
diff --git a/debian/tests/control b/debian/tests/control
|
|
||||||
index 3d704bac..d03b365b 100644
|
|
||||||
--- a/debian/tests/control
|
|
||||||
+++ b/debian/tests/control
|
|
||||||
@@ -1,3 +1,3 @@
|
|
||||||
Tests: kernel-smoke-test
|
|
||||||
Restrictions: needs-root
|
|
||||||
-Depends: zfsutils-linux, zfs-zed, zfs-initramfs, zfs-dkms
|
|
||||||
+Depends: zfsutils-linux, zfs-zed, zfs-initramfs, zfs-dkms, zfs-test
|
|
||||||
diff --git a/debian/zfs-test.install b/debian/zfs-test.install
|
|
||||||
index 225d51fc..ec850df8 100644
|
|
||||||
--- a/debian/zfs-test.install
|
|
||||||
+++ b/debian/zfs-test.install
|
|
||||||
@@ -1,8 +1,12 @@
|
|
||||||
+sbin/zinject
|
|
||||||
+sbin/zpios
|
|
||||||
sbin/ztest
|
|
||||||
usr/bin/raidz_test
|
|
||||||
-usr/share/man/man1/ztest.1
|
|
||||||
usr/share/man/man1/raidz_test.1
|
|
||||||
usr/share/man/man1/test-runner.1
|
|
||||||
+usr/share/man/man1/zpios.1
|
|
||||||
+usr/share/man/man1/ztest.1
|
|
||||||
+usr/share/man/man8/zinject.8
|
|
||||||
usr/share/zfs/common.sh
|
|
||||||
usr/share/zfs/common.sh
|
|
||||||
usr/share/zfs/common.sh
|
|
||||||
diff --git a/debian/zfsutils-linux.install b/debian/zfsutils-linux.install
|
|
||||||
index 238e00a2..18016822 100644
|
|
||||||
--- a/debian/zfsutils-linux.install
|
|
||||||
+++ b/debian/zfsutils-linux.install
|
|
||||||
@@ -15,8 +15,6 @@ sbin/mount.zfs
|
|
||||||
sbin/zdb
|
|
||||||
sbin/zfs
|
|
||||||
sbin/zhack
|
|
||||||
-sbin/zinject
|
|
||||||
-sbin/zpios
|
|
||||||
sbin/zpool
|
|
||||||
sbin/zstreamdump
|
|
||||||
usr/bin/zgenhostid
|
|
||||||
@@ -25,7 +23,7 @@ usr/lib/zfs-linux/zpool.d/
|
|
||||||
usr/sbin/arc_summary
|
|
||||||
usr/sbin/arcstat
|
|
||||||
usr/sbin/dbufstat
|
|
||||||
-usr/share/man/man1/
|
|
||||||
+usr/share/man/man1/zhack.1
|
|
||||||
usr/share/man/man5/
|
|
||||||
usr/share/man/man8/fsck.zfs.8
|
|
||||||
usr/share/man/man8/mount.zfs.8
|
|
||||||
@@ -33,6 +31,5 @@ usr/share/man/man8/vdev_id.8
|
|
||||||
usr/share/man/man8/zdb.8
|
|
||||||
usr/share/man/man8/zfs.8
|
|
||||||
usr/share/man/man8/zgenhostid.8
|
|
||||||
-usr/share/man/man8/zinject.8
|
|
||||||
usr/share/man/man8/zpool.8
|
|
||||||
usr/share/man/man8/zstreamdump.8
|
|
||||||
--
|
|
||||||
2.11.0
|
|
||||||
|
|
||||||
@@ -0,0 +1,141 @@
|
|||||||
|
From 97a0ced45e12cd4cca627392f2d9eea6963ee00e Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
||||||
|
Date: Wed, 12 Oct 2016 13:16:03 +0200
|
||||||
|
Subject: [PATCH 4/6] ensure upgrade path from existing PVE ZFS packages
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
||||||
|
---
|
||||||
|
debian/control.in | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-
|
||||||
|
1 file changed, 58 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/debian/control.in b/debian/control.in
|
||||||
|
index 22dd958..2bee2bf 100644
|
||||||
|
--- a/debian/control.in
|
||||||
|
+++ b/debian/control.in
|
||||||
|
@@ -28,6 +28,8 @@ Package: libnvpair1linux
|
||||||
|
Section: contrib/libs
|
||||||
|
Architecture: linux-any
|
||||||
|
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||||
|
+Replaces: libnvpair1 (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
+Breaks: libnvpair1 (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
Description: Solaris name-value library for Linux
|
||||||
|
This library provides routines for packing and unpacking nv pairs for
|
||||||
|
transporting data across process boundaries, transporting between
|
||||||
|
@@ -37,6 +39,8 @@ Package: libuutil1linux
|
||||||
|
Section: contrib/libs
|
||||||
|
Architecture: linux-any
|
||||||
|
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||||
|
+Replaces: libuutil1 (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
+Breaks: libuutil1 (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
Description: Solaris userland utility library for Linux
|
||||||
|
This library provides a variety of glue functions for ZFS on Linux:
|
||||||
|
* libspl: The Solaris Porting Layer userland library, which provides APIs
|
||||||
|
@@ -54,6 +58,8 @@ Architecture: linux-any
|
||||||
|
Depends: libzfs2linux (= ${binary:Version}), libzpool2linux (= ${binary:Version}),
|
||||||
|
libnvpair1linux (= ${binary:Version}), libuutil1linux (= ${binary:Version}),
|
||||||
|
${misc:Depends}
|
||||||
|
+Replaces: libzfs-dev (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
+Breaks: libzfs-dev (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
Provides: libnvpair-dev, libuutil-dev
|
||||||
|
Description: OpenZFS filesystem development files for Linux
|
||||||
|
Header files and static libraries for compiling software against
|
||||||
|
@@ -66,6 +72,8 @@ Package: libzfs2linux
|
||||||
|
Section: contrib/libs
|
||||||
|
Architecture: linux-any
|
||||||
|
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||||
|
+Replaces: libzfs2 (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
+Breaks: libzfs2 (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
Description: OpenZFS filesystem library for Linux
|
||||||
|
The Z file system is a pooled filesystem designed for maximum data
|
||||||
|
integrity, supporting data snapshots, multiple copies, and data
|
||||||
|
@@ -77,6 +85,8 @@ Package: libzpool2linux
|
||||||
|
Section: contrib/libs
|
||||||
|
Architecture: linux-any
|
||||||
|
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||||
|
+Replaces: libzpool2 (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
+Breaks: libzpool2 (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
Description: OpenZFS pool library for Linux
|
||||||
|
The Z file system is a pooled filesystem designed for maximum data
|
||||||
|
integrity, supporting data snapshots, multiple copies, and data
|
||||||
|
@@ -88,8 +98,10 @@ Package: zfs-initramfs
|
||||||
|
Architecture: all
|
||||||
|
Depends: initramfs-tools,
|
||||||
|
busybox-initramfs | busybox-static | busybox,
|
||||||
|
- zfsutils-linux,
|
||||||
|
+ zfsutils-linux (>= 0.6.5.8-pve11~bpo80),
|
||||||
|
${misc:Depends}
|
||||||
|
+Breaks: zfs-initramfs (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
+Replaces: zfs-initramfs (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
Description: OpenZFS root filesystem capabilities for Linux - initramfs
|
||||||
|
The Z file system is a pooled filesystem designed for maximum data
|
||||||
|
integrity, supporting data snapshots, multiple copies, and data
|
||||||
|
@@ -104,7 +116,9 @@ Architecture: linux-any
|
||||||
|
Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
|
||||||
|
Recommends: lsb-base, zfs-zed
|
||||||
|
Suggests: nfs-kernel-server, samba-common-bin (>= 3.0.23), zfs-initramfs
|
||||||
|
+Replaces: zfsutils (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
Conflicts: zfs, zfs-fuse, zutils
|
||||||
|
+Breaks: zfsutils (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
Provides: zfsutils
|
||||||
|
Description: command-line tools to manage OpenZFS filesystems
|
||||||
|
The Z file system is a pooled filesystem designed for maximum data
|
||||||
|
@@ -118,6 +132,7 @@ Package: zfs-zed
|
||||||
|
Section: contrib/admin
|
||||||
|
Architecture: linux-any
|
||||||
|
Depends: ${misc:Depends}, ${shlibs:Depends}, zfsutils-linux
|
||||||
|
+Replaces: zfsutils (<< 0.6.5.8-pve11~bpo80)
|
||||||
|
Description: OpenZFS Event Daemon
|
||||||
|
The Z file system is a pooled filesystem designed for maximum data
|
||||||
|
integrity, supporting data snapshots, multiple copies, and data
|
||||||
|
@@ -142,3 +157,45 @@ Description: Debugging symbols for OpenZFS userland libraries and tools
|
||||||
|
.
|
||||||
|
This package contains the debugging symbols for libzpool2linux, libzfs2linux,
|
||||||
|
libnvpair1linux, libuutil1linux, zfs-zed and zfsutils-linux.
|
||||||
|
+
|
||||||
|
+# Transitional packages
|
||||||
|
+
|
||||||
|
+Package: libzfs2
|
||||||
|
+Depends: libzfs2linux, ${misc:Depends}
|
||||||
|
+Architecture: all
|
||||||
|
+Priority: extra
|
||||||
|
+Section: oldlibs
|
||||||
|
+Description: transitional package
|
||||||
|
+ This is a transitional package. It can safely be removed.
|
||||||
|
+
|
||||||
|
+Package: libzpool2
|
||||||
|
+Depends: libzpool2linux, ${misc:Depends}
|
||||||
|
+Architecture: all
|
||||||
|
+Priority: extra
|
||||||
|
+Section: oldlibs
|
||||||
|
+Description: transitional package
|
||||||
|
+ This is a transitional package. It can safely be removed.
|
||||||
|
+
|
||||||
|
+Package: libnvpair1
|
||||||
|
+Depends: libnvpair1linux, ${misc:Depends}
|
||||||
|
+Architecture: all
|
||||||
|
+Priority: extra
|
||||||
|
+Section: oldlibs
|
||||||
|
+Description: transitional package
|
||||||
|
+ This is a transitional package. It can safely be removed.
|
||||||
|
+
|
||||||
|
+Package: libuutil1
|
||||||
|
+Depends: libuutil1linux, ${misc:Depends}
|
||||||
|
+Architecture: all
|
||||||
|
+Priority: extra
|
||||||
|
+Section: oldlibs
|
||||||
|
+Description: transitional package
|
||||||
|
+ This is a transitional package. It can safely be removed.
|
||||||
|
+
|
||||||
|
+Package: zfsutils
|
||||||
|
+Depends: zfsutils-linux, ${misc:Depends}
|
||||||
|
+Architecture: all
|
||||||
|
+Priority: extra
|
||||||
|
+Section: oldlibs
|
||||||
|
+Description: transitional package
|
||||||
|
+ This is a transitional package. It can safely be removed.
|
||||||
|
--
|
||||||
|
2.1.4
|
||||||
|
|
||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 9a97a884f8a409395e00891afdc28fa92b9f79b3 Mon Sep 17 00:00:00 2001
|
||||||
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
||||||
Date: Mon, 24 Oct 2016 13:47:06 +0200
|
Date: Mon, 24 Oct 2016 13:47:06 +0200
|
||||||
Subject: [PATCH] import with -d /dev/disk/by-id in scan service
|
Subject: [PATCH 5/6] import with -d /dev/disk/by-id in scan service
|
||||||
MIME-Version: 1.0
|
MIME-Version: 1.0
|
||||||
Content-Type: text/plain; charset=UTF-8
|
Content-Type: text/plain; charset=UTF-8
|
||||||
Content-Transfer-Encoding: 8bit
|
Content-Transfer-Encoding: 8bit
|
||||||
@@ -12,18 +12,18 @@ Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
|||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/etc/systemd/system/zfs-import-scan.service.in b/etc/systemd/system/zfs-import-scan.service.in
|
diff --git a/etc/systemd/system/zfs-import-scan.service.in b/etc/systemd/system/zfs-import-scan.service.in
|
||||||
index abc8e8e6..8fe2c107 100644
|
index 0105283..665b9c8 100644
|
||||||
--- a/etc/systemd/system/zfs-import-scan.service.in
|
--- a/etc/systemd/system/zfs-import-scan.service.in
|
||||||
+++ b/etc/systemd/system/zfs-import-scan.service.in
|
+++ b/etc/systemd/system/zfs-import-scan.service.in
|
||||||
@@ -12,7 +12,7 @@ ConditionPathExists=!@sysconfdir@/zfs/zpool.cache
|
@@ -10,7 +10,7 @@ ConditionPathExists=!@sysconfdir@/zfs/zpool.cache
|
||||||
Type=oneshot
|
Type=oneshot
|
||||||
RemainAfterExit=yes
|
RemainAfterExit=yes
|
||||||
ExecStartPre=-/sbin/modprobe zfs
|
ExecStartPre=/sbin/modprobe zfs
|
||||||
-ExecStart=@sbindir@/zpool import -aN -o cachefile=none
|
-ExecStart=@sbindir@/zpool import -aN -o cachefile=none
|
||||||
+ExecStart=@sbindir@/zpool import -aN -d /dev/disk/by-id -o cachefile=none
|
+ExecStart=@sbindir@/zpool import -aN -d /dev/disk/by-id -o cachefile=none
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=zfs-import.target
|
WantedBy=zfs-mount.service
|
||||||
--
|
--
|
||||||
2.11.0
|
2.1.4
|
||||||
|
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
From 4264f648987efc980002ede5add258a427ad9a05 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= <f.gruenbichler@proxmox.com>
|
||||||
|
Date: Thu, 27 Oct 2016 10:18:55 +0200
|
||||||
|
Subject: [PATCH 6/6] fix rm path in zfs-share.service
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
||||||
|
---
|
||||||
|
etc/systemd/system/zfs-share.service.in | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/etc/systemd/system/zfs-share.service.in b/etc/systemd/system/zfs-share.service.in
|
||||||
|
index 688731e..494f5cb 100644
|
||||||
|
--- a/etc/systemd/system/zfs-share.service.in
|
||||||
|
+++ b/etc/systemd/system/zfs-share.service.in
|
||||||
|
@@ -9,7 +9,7 @@ PartOf=smb.service
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
RemainAfterExit=yes
|
||||||
|
-ExecStartPre=-@bindir@/rm -f /etc/dfs/sharetab
|
||||||
|
+ExecStartPre=-/bin/rm -f /etc/dfs/sharetab
|
||||||
|
ExecStart=@sbindir@/zfs share -a
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
--
|
||||||
|
2.1.4
|
||||||
|
|
||||||
+6
-4
@@ -1,4 +1,6 @@
|
|||||||
0001-remove-DKMS-modules-and-dracut-build.patch
|
0001-Undo-python-changes-until-PVE-5.0-release.patch
|
||||||
0002-import-with-d-dev-disk-by-id-in-scan-service.patch
|
0002-remove-DKMS-modules-and-dracut-build.patch
|
||||||
0003-always-load-ZFS-module-on-boot.patch
|
0003-add-zfsutils.preinst-postinst-for-wheezy-upgrade-pat.patch
|
||||||
0004-Expand-zfs-test-and-add-Breaks-Conflicts.patch
|
0004-ensure-upgrade-path-from-existing-PVE-ZFS-packages.patch
|
||||||
|
0005-import-with-d-dev-disk-by-id-in-scan-service.patch
|
||||||
|
0006-fix-rm-path-in-zfs-share.service.patch
|
||||||
|
|||||||
Reference in New Issue
Block a user