mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
[Backport release-25.05] unbreak linux v5.10 on x86_64 by disabling OF_OVERLAY (#409847)
This commit is contained in:
commit
2225637595
1 changed files with 4 additions and 1 deletions
|
|
@ -1102,7 +1102,10 @@ let
|
|||
|
||||
# enable support for device trees and overlays
|
||||
OF = option yes;
|
||||
OF_OVERLAY = option yes;
|
||||
# OF_OVERLAY breaks v5.10 on x86_64, see https://github.com/NixOS/nixpkgs/issues/403985
|
||||
OF_OVERLAY = lib.mkIf (!(lib.versionOlder version "5.15" && stdenv.hostPlatform.isx86_64)) (
|
||||
option yes
|
||||
);
|
||||
|
||||
# Enable initrd support.
|
||||
BLK_DEV_INITRD = yes;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue