core/testing to 0.6.1_3.8.6-2

Integrated patch from Swâmi Petaramesh to delay the the zfs initcpio script
until the zfs device has come up after being unlocked by LUKS encrypted LVM.
This update has no effect on boot time un-encrypted disks.
pull/12/head
Jesus Alvarez 12 years ago
parent d257d5afc8
commit 3724b0b1b1
  1. BIN
      core/i686/archzfs.db.tar.xz
  2. BIN
      core/i686/archzfs.db.tar.xz.old
  3. BIN
      core/i686/archzfs.db.tar.xz.old.sig
  4. BIN
      core/i686/archzfs.db.tar.xz.sig
  5. BIN
      core/sources/spl-0.6.1_3.8.6-1.src.tar.gz
  6. BIN
      core/sources/spl-0.6.1_3.8.6-2.src.tar.gz
  7. BIN
      core/sources/spl-utils-0.6.1_3.8.6-1.src.tar.gz
  8. BIN
      core/sources/spl-utils-0.6.1_3.8.6-2.src.tar.gz
  9. BIN
      core/sources/zfs-0.6.1_3.8.6-1.src.tar.gz
  10. BIN
      core/sources/zfs-0.6.1_3.8.6-2.src.tar.gz
  11. BIN
      core/sources/zfs-utils-0.6.1_3.8.6-1.src.tar.gz
  12. BIN
      core/x86_64/archzfs.db.tar.xz
  13. BIN
      core/x86_64/archzfs.db.tar.xz.old
  14. BIN
      core/x86_64/archzfs.db.tar.xz.old.sig
  15. BIN
      core/x86_64/archzfs.db.tar.xz.sig
  16. 2
      devsrc/spl-utils/PKGBUILD
  17. 2
      devsrc/spl/PKGBUILD
  18. 4
      devsrc/zfs-utils/PKGBUILD
  19. 6
      devsrc/zfs-utils/zfs-utils.initcpio.hook
  20. 2
      devsrc/zfs/PKGBUILD
  21. BIN
      testing/i686/archzfs.db.tar.xz
  22. BIN
      testing/i686/archzfs.db.tar.xz.old
  23. BIN
      testing/i686/archzfs.db.tar.xz.old.sig
  24. BIN
      testing/i686/archzfs.db.tar.xz.sig
  25. BIN
      testing/sources/spl-0.6.1_3.8.6-1.src.tar.gz
  26. BIN
      testing/sources/spl-0.6.1_3.8.6-2.src.tar.gz
  27. BIN
      testing/sources/spl-utils-0.6.1_3.8.6-1.src.tar.gz
  28. BIN
      testing/sources/spl-utils-0.6.1_3.8.6-2.src.tar.gz
  29. BIN
      testing/sources/zfs-0.6.1_3.8.6-1.src.tar.gz
  30. BIN
      testing/sources/zfs-0.6.1_3.8.6-2.src.tar.gz
  31. BIN
      testing/sources/zfs-utils-0.6.1_3.8.6-1.src.tar.gz
  32. BIN
      testing/x86_64/archzfs.db.tar.xz
  33. BIN
      testing/x86_64/archzfs.db.tar.xz.old
  34. BIN
      testing/x86_64/archzfs.db.tar.xz.old.sig
  35. BIN
      testing/x86_64/archzfs.db.tar.xz.sig

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -3,7 +3,7 @@
pkgname=('spl-utils')
pkgver=0.6.1_3.8.6
pkgrel=1
pkgrel=2
pkgdesc='Solaris Porting Layer kernel module support files.'
depends=('linux=3.8.6')
makedepends=('linux-headers=3.8.6')

@ -3,7 +3,7 @@
pkgname=('spl')
pkgver=0.6.1_3.8.6
pkgrel=1
pkgrel=2
pkgdesc='Solaris Porting Layer kernel modules.'
depends=('spl-utils=0.6.1_3.8.6' 'linux=3.8.6')
makedepends=('linux-headers=3.8.6')

@ -3,7 +3,7 @@
pkgname=('zfs-utils')
pkgver=0.6.1_3.8.6
pkgrel=1
pkgrel=2
pkgdesc="Kernel module support files for the Zettabyte File System."
depends=('spl=0.6.1_3.8.6' 'linux=3.8.6')
makedepends=('linux-headers=3.8.6')
@ -18,7 +18,7 @@ groups=('archzfs')
md5sums=('822cd73c139d89369d6c3944f8afe659'
'3e1c4a29c4f7d590e6a3041f2c61d6ff'
'ebea2b1e593a9a19efa0f7ae7451bbc7'
'105fe46115c6fc6a335399c74bd58289'
'8eec7f96316c7a1b6eeda8d56266a935'
'161e6a5f5f314c9308b4a4565c01fe45')
license=('CDDL')

@ -80,6 +80,12 @@ section at the ZFS AUR page or the ArchWiki ZFS page."
if [ ! -f "/etc/hostid" ] ; then
echo "ZFS: No hostid found on kernel command line or /etc/hostid. ZFS pools may not import correctly."
fi
# Allow up to 10 seconds for zfs device to show up
for i in 1 2 3 4 5 6 7 8 9 10; do
[ -c "/dev/zfs" ] && break
sleep 1
done
}
# vim:set ts=4 sw=4 ft=sh et:

@ -3,7 +3,7 @@
pkgname=('zfs')
pkgver=0.6.1_3.8.6
pkgrel=1
pkgrel=2
pkgdesc="Kernel modules for the Zettabyte File System."
depends=('spl=0.6.1_3.8.6' 'zfs-utils=0.6.1_3.8.6' 'linux=3.8.6')
makedepends=('linux-headers=3.8.6')

Binary file not shown.

Binary file not shown.
Loading…
Cancel
Save