1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-16 19:37:24 +02:00
nixos-hardware/starfive/visionfive/v2/default.nix

34 lines
1 KiB
Nix
Raw Normal View History

2023-04-16 22:43:32 +02:00
{ config, lib, pkgs, ... }: {
boot = {
consoleLogLevel = lib.mkDefault 7;
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
kernelPatches = [{
name = "JH7110";
patch = pkgs.fetchpatch {
# https://patchwork.kernel.org/project/linux-riscv/patch/20240506034627.66765-1-hal.feng@starfivetech.com/
name = "v2-riscv-defconfig-Enable-StarFive-JH7110-drivers.patch";
url = "https://patchwork.kernel.org/series/850668/mbox/";
hash = "sha256-81Brj61TOUoyVBxrXQh2VU3gTh/1V3uo33ic3sJPk2w=";
};
}];
2023-04-16 22:43:32 +02:00
kernelParams =
lib.mkDefault [ "console=tty0" "console=ttyS0,115200n8" "earlycon=sbi" ];
2023-04-29 16:50:43 +02:00
initrd.availableKernelModules = [ "dw_mmc_starfive" ];
2023-04-16 22:43:32 +02:00
loader = {
grub.enable = lib.mkDefault false;
generic-extlinux-compatible.enable = lib.mkDefault true;
};
};
2023-04-16 22:43:32 +02:00
hardware.deviceTree.name =
lib.mkDefault "starfive/jh7110-starfive-visionfive-2-v1.3b.dtb";
hardware.deviceTree.overlays = [{
name = "qspi-patch";
dtsFile = ./qspi-patch.dts;
}];
2023-04-16 22:43:32 +02:00
}