linuxPackages.nvidiaPackages.*.open: fix for linux 6.11 (#344460)
This commit is contained in:
commit
1174fd6678
@ -22,6 +22,12 @@ let
|
|||||||
url = "https://github.com/gentoo/gentoo/raw/c64caf53/x11-drivers/nvidia-drivers/files/nvidia-drivers-470.223.02-gpl-pfn_valid.patch";
|
url = "https://github.com/gentoo/gentoo/raw/c64caf53/x11-drivers/nvidia-drivers/files/nvidia-drivers-470.223.02-gpl-pfn_valid.patch";
|
||||||
hash = "sha256-eZiQQp2S/asE7MfGvfe6dA/kdCvek9SYa/FFGp24dVg=";
|
hash = "sha256-eZiQQp2S/asE7MfGvfe6dA/kdCvek9SYa/FFGp24dVg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Fixes framebuffer with linux 6.11
|
||||||
|
fbdev_linux_611_patch = fetchpatch {
|
||||||
|
url = "https://patch-diff.githubusercontent.com/raw/NVIDIA/open-gpu-kernel-modules/pull/692.patch";
|
||||||
|
hash = "sha256-OYw8TsHDpBE5DBzdZCBT45+AiznzO9SfECz5/uXN5Uc=";
|
||||||
|
};
|
||||||
in
|
in
|
||||||
rec {
|
rec {
|
||||||
mkDriver = generic;
|
mkDriver = generic;
|
||||||
@ -48,6 +54,7 @@ rec {
|
|||||||
openSha256 = "sha256-/32Zf0dKrofTmPZ3Ratw4vDM7B+OgpC4p7s+RHUjCrg=";
|
openSha256 = "sha256-/32Zf0dKrofTmPZ3Ratw4vDM7B+OgpC4p7s+RHUjCrg=";
|
||||||
settingsSha256 = "sha256-kQsvDgnxis9ANFmwIwB7HX5MkIAcpEEAHc8IBOLdXvk=";
|
settingsSha256 = "sha256-kQsvDgnxis9ANFmwIwB7HX5MkIAcpEEAHc8IBOLdXvk=";
|
||||||
persistencedSha256 = "sha256-E2J2wYYyRu7Kc3MMZz/8ZIemcZg68rkzvqEwFAL3fFs=";
|
persistencedSha256 = "sha256-E2J2wYYyRu7Kc3MMZz/8ZIemcZg68rkzvqEwFAL3fFs=";
|
||||||
|
patchesOpen = [ fbdev_linux_611_patch ];
|
||||||
});
|
});
|
||||||
|
|
||||||
beta = selectHighestVersion latest (generic {
|
beta = selectHighestVersion latest (generic {
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
, postPatch ? null
|
, postPatch ? null
|
||||||
, patchFlags ? null
|
, patchFlags ? null
|
||||||
, patches ? [ ]
|
, patches ? [ ]
|
||||||
|
, patchesOpen ? [ ]
|
||||||
, preInstall ? null
|
, preInstall ? null
|
||||||
, postInstall ? null
|
, postInstall ? null
|
||||||
, broken ? false
|
, broken ? false
|
||||||
@ -201,6 +202,7 @@ let
|
|||||||
(hash: callPackage ./open.nix {
|
(hash: callPackage ./open.nix {
|
||||||
inherit hash;
|
inherit hash;
|
||||||
nvidia_x11 = self;
|
nvidia_x11 = self;
|
||||||
|
patches = patchesOpen;
|
||||||
broken = brokenOpen;
|
broken = brokenOpen;
|
||||||
})
|
})
|
||||||
openSha256;
|
openSha256;
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
, kernel
|
, kernel
|
||||||
, nvidia_x11
|
, nvidia_x11
|
||||||
, hash
|
, hash
|
||||||
|
, patches ? [ ]
|
||||||
, broken ? false
|
, broken ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -18,6 +19,8 @@ stdenv.mkDerivation ({
|
|||||||
inherit hash;
|
inherit hash;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
inherit patches;
|
||||||
|
|
||||||
nativeBuildInputs = kernel.moduleBuildDependencies;
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
||||||
|
|
||||||
makeFlags = kernel.makeFlags ++ [
|
makeFlags = kernel.makeFlags ++ [
|
||||||
|
Loading…
Reference in New Issue
Block a user