starfive visionfive2: update kernel

This commit is contained in:
Jakob Leifhelm 2023-04-29 16:50:43 +02:00
parent b0fd962525
commit 0cfe255229
No known key found for this signature in database
GPG key ID: 6817AA0238100822
2 changed files with 7 additions and 8 deletions

View file

@ -4,15 +4,14 @@
supportedFilesystems =
lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
consoleLogLevel = lib.mkDefault 7;
kernelPackages =
lib.mkDefault (pkgs.callPackage ./linux-6.3.nix { inherit (config.boot) kernelPatches; });
kernelPackages = lib.mkDefault (pkgs.callPackage ./linux-6.3.nix {
inherit (config.boot) kernelPatches;
});
kernelParams =
lib.mkDefault [ "console=tty0" "console=ttyS0,115200n8" "earlycon=sbi" ];
initrd.availableKernelModules = [
"dw_mmc_starfive"
];
initrd.availableKernelModules = [ "dw_mmc_starfive" ];
loader = {
grub.enable = lib.mkDefault false;