Package Details: zfs-linux 2.2.7_6.12.7.arch1.1-1

Git Clone URL: https://aur.archlinux.org/zfs-linux.git (read-only, click to copy)
Package Base: zfs-linux
Description: Kernel modules for the Zettabyte File System.
Upstream URL: https://openzfs.org/
Keywords: kernel linux openzfs zfs
Licenses: CDDL
Groups: archzfs-linux
Conflicts: spl-dkms, spl-dkms-git, spl-linux, zfs-dkms, zfs-dkms-git, zfs-dkms-rc, zfs-linux-git, zfs-linux-rc
Provides: spl, zfs
Replaces: spl-linux
Submitter: demizer
Maintainer: lightdot
Last Packager: lightdot
Votes: 273
Popularity: 2.11
First Submitted: 2016-04-21 08:45 (UTC)
Last Updated: 2024-12-28 02:44 (UTC)

Required by (19)

Sources (1)

Latest Comments

« First ‹ Previous 1 .. 18 19 20 21 22 23 24 25 26 27 28 .. 79 Next › Last »

severach commented on 2016-03-16 16:34 (UTC)

https://github.com/severach/ArchLinuxScripts I made a shell script. It applies uname -r or not, as desired to all 4 PKGBUILD.

irate.overlord commented on 2016-03-16 01:27 (UTC)

@techmunk : what file is this patch applied to?

techmunk commented on 2016-03-10 21:49 (UTC)

I use the patch below along with clean-chroot-manager (https://aur.archlinux.org/packages/clean-chroot-manager). Works a treat, and I don't have to wait for demizer to update for a new kernel version, but I should still get ZFS updates just fine. diff --git a/PKGBUILD b/PKGBUILD index 2848946..20e1114 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,21 +12,9 @@ pkgver=0.6.5.4_r0_g1ffc4c1_4.4.3_1 pkgrel=1 license=('CDDL') -# Used incase the i686 and x86_64 linux packages get out of sync with the -# PKGREL. This occurred on January 31, 2014 where i686 was versioned at -# 3.12.9-1 and x86_64 was versioned at 3.12.9-2. -_kernel_version_x32="4.4.3-1" -_kernel_version_x32_full="4.4.3-1" -_kernel_version_x64="4.4.3-1" -_kernel_version_x64_full="4.4.3-1" - -if [[ $CARCH == "i686" ]]; then - _kernel_version=${_kernel_version_x32} - _kernel_version_full=${_kernel_version_x32_full} -else - _kernel_version=${_kernel_version_x64} - _kernel_version_full=${_kernel_version_x64_full} -fi +_kernel_version="$(/usr/bin/pacman -Ss ^linux$ | /usr/bin/grep ^core/linux | /usr/bin/cut -d ' ' -f 2)" +_kernel_version_full="$_kernel_version" +pkgver="${pkgver%_*_*}_${_kernel_version//-/_}" pkgdesc="Kernel modules for the Zettabyte File System." depends=("spl-git" "zfs-utils-git" "linux=${_kernel_version}")

demizer commented on 2016-01-05 03:03 (UTC)

@abrilevskiy, I will make the requested changes soon. In the next week I am going to spend time clearing out issues in the archzfs issue tracker that have built up over the last year. https://github.com/archzfs/archzfs/issues/28 However, the changes suggested for _kernel_version cannot be implemented because of the comment before that section of code in the PKGBUILD: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=zfs-git#n15 I will test building against linux-vfio and linux-ck.

abrilevskiy commented on 2016-01-04 16:56 (UTC) (edited on 2016-01-04 17:05 (UTC) by abrilevskiy)

@demizer, Could you please: 1. use `uname -r` for dynamic kernel version detection? 2. replace kernel variable from: _kernel_version_x32="4.3.3-2" _kernel_version_x32_full="4.3.3-2" _kernel_version_x64="4.3.3-2" _kernel_version_x64_full="4.3.3-2" to something like: _kernel_version_x32="4.3.3-2" _kernel_version_x32_full=${_kernel_version_x32} _kernel_version_x64=${_kernel_version_x32} _kernel_version_x64_full=${_kernel_version_x32} 3. create new variable like kernel_ext that store "-ARCH" by default (kernel_ext="-ARCH") I am using custom kernel (linux-vfio. uname -r: 4.2.5-1-vfio) and each kernel updated I have to: 1. uninstall zfs* packages 2. install kernel 3. download zfs* packages 4. modify PKGBUILD files of zfs* packages 5. compile zfs* packages 5. install zfs* packages Could you please help me to reduce number of steps required to upgrade kernel. Thank you in advance, Andrei.

demizer commented on 2015-10-02 03:58 (UTC)

@justinkb, it's perfectly fine to flag out-of-date to notify me of a problem with the packages. If the reason is for a problem with the package itself (other than a kernel version upgrade), please state so in the comment area. I use google inbox so when the packages are flagged out-of-date it is immediately apparent. Thanks for asking!

justinkb commented on 2015-10-01 19:12 (UTC)

Just a little question to the package maintainer about etiquette. Are we supposed to use the "flag out of date" link to notify you of kernel updates or do you consider this rude/annoying?

severach commented on 2015-09-23 11:01 (UTC)

@Flubbadub https://github.com/severach/ArchLinuxScripts Try zfsbuild.sh for Manjaro. Turn enable downgrade option permanently. @demizer # sudo zpool import -d /dev/disk/by-partlabel zfsdata The ZFS modules are not loaded. Try running '/sbin/modprobe zfs' as root to load them. Does zpool not load the modules automatically any more?

graysky commented on 2015-09-20 11:01 (UTC)

@Flub - Manjaro != Arch so just use run a sed onliner in the build dir before you do it: sed 's/-ARCH/-MANJARO/' *