Skip to content

Commit

Permalink
zfsUnstable: 2.1.12 → 2.1.13-unstable-2023-08-02
Browse files Browse the repository at this point in the history
https://github.com/openzfs/zfs/commits/zfs-2.1.13-staging

With anecdote from a NixOS user that it’s working
openzfs/zfs#15125

…working for me as well as I built+booted from this commit.
  • Loading branch information
toastal authored and Mic92 committed Dec 15, 2023
1 parent 9853939 commit 836f2ff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/os-specific/linux/zfs/unstable.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ in
callPackage ./generic.nix args {
# check the release notes for compatible kernels
kernelCompatible = if stdenv'.isx86_64 || removeLinuxDRM
then kernel.kernelOlder "6.4"
then kernel.kernelOlder "6.5"
else kernel.kernelOlder "6.2";

latestCompatibleLinuxPackages = linuxKernel.packages.linux_6_1;
latestCompatibleLinuxPackages = if stdenv'.isx86_64 || removeLinuxDRM
then linuxKernel.packages.linux_6_4
else linuxKernel.packages.linux_6_1;

# 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
Expand Down

0 comments on commit 836f2ff

Please sign in to comment.