We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7abfa48 + 1e6c445 commit 4049976Copy full SHA for 4049976
pkgs/os-specific/linux/kernel/common-config.nix
@@ -1102,7 +1102,10 @@ let
1102
1103
# enable support for device trees and overlays
1104
OF = option yes;
1105
- OF_OVERLAY = option yes;
+ # OF_OVERLAY breaks v5.10 on x86_64, see https://github.com/NixOS/nixpkgs/issues/403985
1106
+ OF_OVERLAY = lib.mkIf (!(lib.versionOlder version "5.15" && stdenv.hostPlatform.isx86_64)) (
1107
+ option yes
1108
+ );
1109
1110
# Enable initrd support.
1111
BLK_DEV_INITRD = yes;
0 commit comments