raspberry-pi/4: fix modesetting on 6.1 kernels

This commit is contained in:
Yureka 2023-08-09 10:40:27 +02:00 committed by Jörg Thalheim
parent 33052d5cad
commit 430a56dd16
1 changed files with 7 additions and 0 deletions

View File

@ -27,6 +27,13 @@ in
};
config = lib.mkIf cfg.enable {
# fixes a crash: https://github.com/raspberrypi/linux/issues/5568
# can be removed for >= nixos 23.11: https://github.com/NixOS/nixpkgs/pull/247826
boot.kernelParams = [ "kunit.enable=0" ];
# doesn't work for the CM module, so we exclude e.g. bcm2711-rpi-cm4.dts
hardware.deviceTree.filter = "bcm2711-rpi-4*.dtb";
# Configure for modesetting in the device tree
hardware.deviceTree = {
overlays = [