raspberry-pi: add vc4 to common modules

Raspberry Pi 2 and 3 will now have it too.
This commit is contained in:
Issam E. Maghni 2026-02-19 07:48:26 -05:00
parent 9ad075ca00
commit 076b2a5116
2 changed files with 1 additions and 1 deletions

View file

@ -33,7 +33,6 @@
pkgs.linuxPackagesFor (pkgs.callPackage ../common/kernel.nix { rpiVersion = 4; })
);
initrd.availableKernelModules = [
"vc4"
"pcie-brcmstb" # required for the pcie bus to work
"reset-raspberrypi" # required for vl805 firmware to load
]

View file

@ -2,5 +2,6 @@
boot.initrd.availableKernelModules = [
"usb-storage"
"usbhid"
"vc4"
];
}