Merge pull request #259625 from adamcstephens/zfsUnstable/2.2.0-rc5
This commit is contained in:
commit
6f2581d35c
2 changed files with 9 additions and 4 deletions
|
@ -83,6 +83,9 @@ stdenv'.mkDerivation {
|
||||||
substituteInPlace ./udev/vdev_id \
|
substituteInPlace ./udev/vdev_id \
|
||||||
--replace "PATH=/bin:/sbin:/usr/bin:/usr/sbin" \
|
--replace "PATH=/bin:/sbin:/usr/bin:/usr/sbin" \
|
||||||
"PATH=${makeBinPath [ coreutils gawk gnused gnugrep systemd ]}"
|
"PATH=${makeBinPath [ coreutils gawk gnused gnugrep systemd ]}"
|
||||||
|
substituteInPlace ./config/zfs-build.m4 \
|
||||||
|
--replace "bashcompletiondir=/etc/bash_completion.d" \
|
||||||
|
"bashcompletiondir=$out/share/bash-completion/completions"
|
||||||
'' else ''
|
'' else ''
|
||||||
substituteInPlace ./etc/zfs/Makefile.am --replace "\$(sysconfdir)/zfs" "$out/etc/zfs"
|
substituteInPlace ./etc/zfs/Makefile.am --replace "\$(sysconfdir)/zfs" "$out/etc/zfs"
|
||||||
|
|
||||||
|
|
|
@ -12,18 +12,20 @@ in
|
||||||
callPackage ./generic.nix args {
|
callPackage ./generic.nix args {
|
||||||
# check the release notes for compatible kernels
|
# check the release notes for compatible kernels
|
||||||
kernelCompatible = if stdenv'.isx86_64 || removeLinuxDRM
|
kernelCompatible = if stdenv'.isx86_64 || removeLinuxDRM
|
||||||
then kernel.kernelOlder "6.5"
|
then kernel.kernelOlder "6.6"
|
||||||
else kernel.kernelOlder "6.2";
|
else kernel.kernelOlder "6.2";
|
||||||
|
|
||||||
latestCompatibleLinuxPackages = linuxKernel.packages.linux_6_1;
|
latestCompatibleLinuxPackages = if stdenv'.isx86_64 || removeLinuxDRM
|
||||||
|
then linuxKernel.packages.linux_6_5
|
||||||
|
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.0-rc4";
|
version = "2.2.0-rc5";
|
||||||
|
|
||||||
sha256 = "sha256-zTG6iujlWB2H8j6i+t59zdyztoDFk373AjgHzC8x5mQ=";
|
sha256 = "sha256-97dTmSneAuhDR7LrJxG7/xPpI1hGv5mDDuq8HRTZKx0=";
|
||||||
|
|
||||||
isUnstable = true;
|
isUnstable = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue