zfsUnstable: 2.2.2 → 2.2.3-unstable-2024-01-26
Should have patches for 6.7 compatibility
This commit is contained in:
parent
632751bf0c
commit
fd12b90a57
1 changed files with 5 additions and 4 deletions
|
@ -17,23 +17,24 @@ callPackage ./generic.nix args {
|
||||||
# check the release notes for compatible kernels
|
# check the release notes for compatible kernels
|
||||||
kernelCompatible =
|
kernelCompatible =
|
||||||
if stdenv'.isx86_64 || removeLinuxDRM
|
if stdenv'.isx86_64 || removeLinuxDRM
|
||||||
then kernel.kernelOlder "6.7"
|
then kernel.kernelOlder "6.8"
|
||||||
else kernel.kernelOlder "6.2";
|
else kernel.kernelOlder "6.2";
|
||||||
|
|
||||||
latestCompatibleLinuxPackages = if stdenv'.isx86_64 || removeLinuxDRM
|
latestCompatibleLinuxPackages = if stdenv'.isx86_64 || removeLinuxDRM
|
||||||
then linuxKernel.packages.linux_6_6
|
then linuxKernel.packages.linux_6_7
|
||||||
else linuxKernel.packages.linux_6_1;
|
else linuxKernel.packages.linux_6_1;
|
||||||
|
|
||||||
# this package should point to a version / git revision compatible with the latest kernel release
|
# 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
|
# IMPORTANT: Always use a tagged release candidate or commits from the
|
||||||
# zfs-<version>-staging branch, because this is tested by the OpenZFS
|
# zfs-<version>-staging branch, because this is tested by the OpenZFS
|
||||||
# maintainers.
|
# maintainers.
|
||||||
version = "2.2.2";
|
version = "2.2.3-unstable-2024-01-26";
|
||||||
|
rev = "3425484eb907d489c315cced2a1fdea08ef03fc4";
|
||||||
|
|
||||||
isUnstable = true;
|
isUnstable = true;
|
||||||
tests = [
|
tests = [
|
||||||
nixosTests.zfs.unstable
|
nixosTests.zfs.unstable
|
||||||
];
|
];
|
||||||
|
|
||||||
hash = "sha256-CqhETAwhWMhbld5ib3Rz1dxms+GQbLwjEZw/V7U/2nE=";
|
hash = "sha256-P8PIp0qRHm/fxYdxWKVRX9LR5tKZR7fFUSY90QDE/lU=";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue