starfive visionfive2: use mainline kernel

This commit is contained in:
Nick Cao 2024-05-25 09:31:04 -04:00 committed by mergify[bot]
parent 9a20e17a73
commit 413452614f
2 changed files with 1 additions and 32 deletions

View file

@ -1,12 +1,7 @@
{ config, lib, pkgs, ... }: {
boot = {
# Force no ZFS (from nixos/modules/profiles/base.nix) until updated to kernel 6.0
supportedFilesystems =
lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
consoleLogLevel = lib.mkDefault 7;
kernelPackages = lib.mkDefault (pkgs.callPackage ./linux-6.6.nix {
inherit (config.boot) kernelPatches;
});
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
kernelParams =
lib.mkDefault [ "console=tty0" "console=ttyS0,115200n8" "earlycon=sbi" ];