add more kernel modules for raspberry

This commit is contained in:
chaos 2024-08-31 14:31:11 +01:00
parent bafb5cec49
commit 7a9e06761a
No known key found for this signature in database

View file

@ -77,6 +77,11 @@ in {
boot = {
kernelPackages = pkgs.linuxPackages_rpi4;
supportedFilesystems = mkForce ["vfat"];
kernelParams = [
"8250.nr_uarts=11"
"console=ttyAMA10,115200"
"console=tty0"
];
loader = {
systemd-boot = {
enable = true;
@ -94,6 +99,10 @@ in {
"usb_storage"
"sd_mod"
"sdhci_pci"
"usbhid"
"vc4"
"pcie_brcmstb"
"reset-raspberrypi"
];
};