mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-09 20:49:40 +01:00
27 lines
803 B
Nix
27 lines
803 B
Nix
|
{ lib, callPackage, linuxPackagesFor, kernelPatches, ... }:
|
||
|
|
||
|
let
|
||
|
modDirVersion = "6.6.0";
|
||
|
linuxPkg = { lib, fetchFromGitHub, buildLinux, ... }@args:
|
||
|
buildLinux (args // {
|
||
|
version = "${modDirVersion}-starfive-visionfive2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "starfive-tech";
|
||
|
repo = "linux";
|
||
|
rev = "13eb70da2a73187c8c7aece13d23d68928aa8210";
|
||
|
hash = "sha256-bwB7Pc+Z+MWXPfWYdgtRGuhqjiNHLDGNCY62e4lBGvE=";
|
||
|
};
|
||
|
|
||
|
inherit modDirVersion kernelPatches;
|
||
|
|
||
|
structuredExtraConfig = with lib.kernel; {
|
||
|
PINCTRL_STARFIVE_JH7110_SYS = yes;
|
||
|
SERIAL_8250_DW = yes;
|
||
|
};
|
||
|
|
||
|
extraMeta.branch = "JH7110_VisionFive2_upstream";
|
||
|
} // (args.argsOverride or { }));
|
||
|
|
||
|
in lib.recurseIntoAttrs (linuxPackagesFor (callPackage linuxPkg { }))
|