mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-09 20:49:40 +01:00
69fe256333
u-boot is able to automatically set the correct device tree name
on VisionFive 2 boards by reading their EEPROM since v2023.10.
This allows our image to work with either revision of the boards.
Reference: 16dbe3d9d4
21 lines
685 B
Nix
21 lines
685 B
Nix
{ 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;
|
|
});
|
|
|
|
kernelParams =
|
|
lib.mkDefault [ "console=tty0" "console=ttyS0,115200n8" "earlycon=sbi" ];
|
|
|
|
initrd.availableKernelModules = [ "dw_mmc_starfive" ];
|
|
|
|
loader = {
|
|
grub.enable = lib.mkDefault false;
|
|
generic-extlinux-compatible.enable = lib.mkDefault true;
|
|
};
|
|
};
|
|
}
|