Init starfive visionfive 2
This commit is contained in:
parent
3006d2860a
commit
0cc1214203
11 changed files with 270 additions and 0 deletions
18
starfive/visionfive/v2/spl-tool.nix
Normal file
18
starfive/visionfive/v2/spl-tool.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec{
|
||||
pname = "spi_tool";
|
||||
version = "0x01010101";
|
||||
src = fetchFromGitHub {
|
||||
owner = "starfive-tech";
|
||||
repo = "soft_3rdpart";
|
||||
rev = "cd7b50cd9f9eca66c23ebd19f06a172ce0be591f";
|
||||
sha256 = "sha256-hRmP74gz0Y9KnSwXCjxEiArJE+FonI9rGghZTK54qGs=";
|
||||
sparseCheckout = [ "spl_tool" ];
|
||||
};
|
||||
sourceRoot = "source/spl_tool";
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp spl_tool $out/bin
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue