Merge pull request #197898 from toastal/zfs-2.1.7-unstable

This commit is contained in:
Bernardo Meurer 2022-10-31 11:23:03 +00:00 committed by GitHub
commit 1093c9b4e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
};