From 076b2a51166d378e75528d955176fbd62f472d71 Mon Sep 17 00:00:00 2001 From: "Issam E. Maghni" Date: Thu, 19 Feb 2026 07:48:26 -0500 Subject: [PATCH] raspberry-pi: add `vc4` to common modules Raspberry Pi 2 and 3 will now have it too. --- raspberry-pi/4/default.nix | 1 - raspberry-pi/common/default.nix | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/raspberry-pi/4/default.nix b/raspberry-pi/4/default.nix index cf71bc73..41fcea85 100644 --- a/raspberry-pi/4/default.nix +++ b/raspberry-pi/4/default.nix @@ -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 ] diff --git a/raspberry-pi/common/default.nix b/raspberry-pi/common/default.nix index 8bfa0161..11f2cfc7 100644 --- a/raspberry-pi/common/default.nix +++ b/raspberry-pi/common/default.nix @@ -2,5 +2,6 @@ boot.initrd.availableKernelModules = [ "usb-storage" "usbhid" + "vc4" ]; }