summary refs log tree commit diff
path: root/pkgs/os-specific/linux/zfs
diff options
context:
space:
mode:
authortoastal <toastal@posteo.net>2022-10-26 19:02:12 +0700
committertoastal <toastal@posteo.net>2022-10-28 15:56:10 +0700
commitd89cbdcbe4386829e89596e0b0d790732f1a39b1 (patch)
treee74589ae7d7951a4dfcb9bf71ec7fbe0fb00f41e /pkgs/os-specific/linux/zfs
parent9cc0f47160900df6c72852c13f450d4b7107b67c (diff)
downloadnixpkgs-d89cbdcbe4386829e89596e0b0d790732f1a39b1.tar
nixpkgs-d89cbdcbe4386829e89596e0b0d790732f1a39b1.tar.gz
nixpkgs-d89cbdcbe4386829e89596e0b0d790732f1a39b1.tar.bz2
nixpkgs-d89cbdcbe4386829e89596e0b0d790732f1a39b1.tar.lz
nixpkgs-d89cbdcbe4386829e89596e0b0d790732f1a39b1.tar.xz
nixpkgs-d89cbdcbe4386829e89596e0b0d790732f1a39b1.tar.zst
nixpkgs-d89cbdcbe4386829e89596e0b0d790732f1a39b1.zip
zfsUnstable: 2.1.6 → 2.1.7-staging
With 5.19 kernels now being EoL and my laptop demanding at least 5.17 to
function, I want to get ahead of the curve and add support for 6.0
kernels. The 2.1.6 tag was cut so late that it support 6.0 but isn’t as
well tested according to the conversations I read. There aren’t many
commits in the `2.1.7-staging` at this point, but this will help keep my
system afloat until the real `2.1.7` release. I’ve booted my laptop into
this and everything appears to be functioning normally.
Diffstat (limited to 'pkgs/os-specific/linux/zfs')
-rw-r--r--pkgs/os-specific/linux/zfs/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/zfs/default.nix b/pkgs/os-specific/linux/zfs/default.nix
index 080a198b0f4..00afcfbda93 100644
--- a/pkgs/os-specific/linux/zfs/default.nix
+++ b/pkgs/os-specific/linux/zfs/default.nix
@@ -17,6 +17,7 @@
 
 # for determining the latest compatible linuxPackages
 , linuxPackages_5_19 ? pkgs.linuxKernel.packages.linux_5_19
+, linuxPackages_6_0 ? pkgs.linuxKernel.packages.linux_6_0
 }:
 
 let
@@ -227,17 +228,17 @@ in {
 
   zfsUnstable = common {
     # check the release notes for compatible kernels
-    kernelCompatible = kernel.kernelOlder "5.20";
-    latestCompatibleLinuxPackages = linuxPackages_5_19;
+    kernelCompatible = kernel.kernelOlder "6.1";
+    latestCompatibleLinuxPackages = linuxPackages_6_0;
 
     # this package should point to a version / git revision compatible with the latest kernel release
     # IMPORTANT: Always use a tagged release candidate or commits from the
     # zfs-<version>-staging branch, because this is tested by the OpenZFS
     # maintainers.
-    version = "2.1.6";
-    # rev = "0000000000000000000000000000000000000000";
+    version = "2.1.7-staging-2022-10-27";
+    rev = "04f1983aab16d378be376768275856bc38be48bd";
 
-    sha256 = "sha256-gd5WlNtnoSiVj4sKUGf0WhR7Z1GPebwu3Z1mkNsoC/I=";
+    sha256 = "sha256-6s9Qcw6Qqq7+JU9UPa8DDu2yzhD1OV3piLlYsgEoIhg=";
 
     isUnstable = true;
   };