Update to 0.6.2_3.11.6-3

pull/16/head
Jesus Alvarez 11 years ago
parent 8319142d1d
commit feb6e316f7
  1. 4
      conf.sh
  2. 4
      spl-utils/PKGBUILD
  3. 8
      spl/PKGBUILD
  4. 8
      zfs-utils/PKGBUILD
  5. 8
      zfs/PKGBUILD
  6. 24
      zfs/zfs.install

@ -1,11 +1,11 @@
# Version information
PKGREL="1" # The pkgrel of all the archzfs packages
PKGREL="3" # The pkgrel of all the archzfs packages
# ZFSonLinux version
ZOL_VERSION="0.6.2"
# Linux version dependencies
LINUX_VERSION="3.11.5"
LINUX_VERSION="3.11.6"
LINUX_PKGREL="1"
LINUX_VERSION_FULL="$LINUX_VERSION-$LINUX_PKGREL"
LINUX_ARCHISO="3.11.2"

@ -11,8 +11,8 @@ pkgname=("spl-utils")
# The build script can be found at
# https://github.com/demizer/archzfs/blob/master/build.sh
#
pkgver=0.6.2_3.11.5
pkgrel=1
pkgver=0.6.2_3.11.6
pkgrel=3
pkgdesc="Solaris Porting Layer kernel module support files."
arch=("i686" "x86_64")
url="http://zfsonlinux.org/"

@ -11,11 +11,11 @@ pkgname=("spl")
# The build script can be found at
# https://github.com/demizer/archzfs/blob/master/build.sh
#
pkgver=0.6.2_3.11.5
pkgrel=1
pkgver=0.6.2_3.11.6
pkgrel=3
pkgdesc="Solaris Porting Layer kernel modules."
depends=("spl-utils" "linux=3.11.5-1")
makedepends=("linux-headers=3.11.5-1")
depends=("spl-utils" "linux=3.11.6-1")
makedepends=("linux-headers=3.11.6-1")
arch=("i686" "x86_64")
url="http://zfsonlinux.org/"
source=(http://archive.zfsonlinux.org/downloads/zfsonlinux/spl/spl-0.6.2.tar.gz)

@ -11,8 +11,8 @@ pkgname=("zfs-utils")
# The build script can be found at
# https://github.com/demizer/archzfs/blob/master/build.sh
#
pkgver=0.6.2_3.11.5
pkgrel=1
pkgver=0.6.2_3.11.6
pkgrel=3
pkgdesc="Kernel module support files for the Zettabyte File System."
depends=("spl")
arch=("i686" "x86_64")
@ -26,8 +26,8 @@ groups=("archzfs")
md5sums=('0b183b0abdd5be287046ad9ce4f899fd'
'3e1c4a29c4f7d590e6a3041f2c61d6ff'
'ebea2b1e593a9a19efa0f7ae7451bbc7'
'8eec7f96316c7a1b6eeda8d56266a935'
'2dd798467cfe03aa4532399b86d76300')
'9a4083058ded206783c921e9ac7afdcf'
'1f16ea8592509edb8efa4d7da25f8182')
license=("CDDL")
build() {

@ -11,11 +11,11 @@ pkgname=("zfs")
# The build script can be found at
# https://github.com/demizer/archzfs/blob/master/build.sh
#
pkgver=0.6.2_3.11.5
pkgrel=1
pkgver=0.6.2_3.11.6
pkgrel=3
pkgdesc="Kernel modules for the Zettabyte File System."
depends=("spl=0.6.2_3.11.5-1" "zfs-utils" "linux=3.11.5-1")
makedepends=("linux-headers=3.11.5-1")
depends=("spl=0.6.2_3.11.6-3" "zfs-utils" "linux=3.11.6-1")
makedepends=("linux-headers=3.11.6-1")
arch=("i686" "x86_64")
url="http://zfsonlinux.org/"
source=(http://archive.zfsonlinux.org/downloads/zfsonlinux/zfs/zfs-0.6.2.tar.gz)

@ -20,18 +20,16 @@ check_initramfs() {
if [ $(grep -o "\." <<<"$LINUX_VER" | wc -l) -eq 1 ]; then
KERNEL_VERSION="${LINUX_VER}.0-${KERNEL_VERSION:(-1)}"
fi
echo $LINUX_VER
echo $KERNEL_VERSION
depmod $(basename $(find /usr/lib/modules -type d -iname $KERNEL_VERSION\*))
# MK_CONF=$(grep -v '#' /etc/mkinitcpio.conf | grep zfs >/dev/null; echo $?);
# if [[ $MK_CONF == '0' ]]; then
# if [[ $1 == 'remove' ]]; then
# echo '>>> The ZFS packages have been removed, but "zfs" remains in the "hooks"'
# echo '>>> list in mkinitcpio.conf! You will need to remove "zfs" from the '
# echo '>>> "hooks" list and then regenerate the initial ramdisk.'
# else
# echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
# mkinitcpio -p linux
# fi
# fi
MK_CONF=$(grep -v '#' /etc/mkinitcpio.conf | grep zfs >/dev/null; echo $?);
if [[ $MK_CONF == '0' ]]; then
if [[ $1 == 'remove' ]]; then
echo '>>> The ZFS packages have been removed, but "zfs" remains in the "hooks"'
echo '>>> list in mkinitcpio.conf! You will need to remove "zfs" from the '
echo '>>> "hooks" list and then regenerate the initial ramdisk.'
else
echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
mkinitcpio -p linux
fi
fi
}

Loading…
Cancel
Save