nixos-config/patches/zfs-2.2.5.patch

17 lines
718 B
Diff
Raw Normal View History

2024-08-08 11:12:09 +03:00
diff --git a/pkgs/os-specific/linux/zfs/2_2.nix b/pkgs/os-specific/linux/zfs/2_2.nix
2024-09-11 18:01:30 +03:00
index 9e3fde0780f0..9165ab4d5d1b 100644
2024-08-08 11:12:09 +03:00
--- a/pkgs/os-specific/linux/zfs/2_2.nix
+++ b/pkgs/os-specific/linux/zfs/2_2.nix
2024-09-11 18:01:30 +03:00
@@ -15,9 +15,9 @@ callPackage ./generic.nix args {
2024-08-08 11:12:09 +03:00
# this attribute is the correct one for this package.
kernelModuleAttribute = "zfs_2_2";
# check the release notes for compatible kernels
2024-09-11 18:01:30 +03:00
- kernelCompatible = kernel.kernelOlder "6.10";
2024-08-08 11:12:09 +03:00
+ kernelCompatible = kernel.kernelOlder "6.11";
2024-09-11 18:01:30 +03:00
- latestCompatibleLinuxPackages = linuxKernel.packages.linux_6_6;
2024-08-08 11:12:09 +03:00
+ latestCompatibleLinuxPackages = linuxKernel.packages.linux_6_10;
2024-09-11 18:01:30 +03:00
2024-08-08 11:12:09 +03:00
# this package should point to the latest release.
2024-09-11 18:01:30 +03:00
version = "2.2.5";