Init starfive visionfive 2

This commit is contained in:
Jakob Leifhelm
2023-04-16 22:43:32 +02:00
parent 3006d2860a
commit 0cc1214203
11 changed files with 270 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{ fetchFromGitHub, buildUBoot }:
buildUBoot {
version = "2021.10";
src = fetchFromGitHub {
owner = "starfive-tech";
repo = "u-boot";
rev = "688befadf1d337dee3593e6cc0fe1c737cc150bd";
sha256 = "sha256-RGADEJRZyuzjblxowdHnhj78eMJBIWnvkwEcpSen5Oo=";
};
defconfig = "starfive_visionfive2_defconfig";
filesToInstall = [
"u-boot.bin"
"arch/riscv/dts/starfive_visionfive2.dtb"
"spl/u-boot-spl.bin"
"tools/mkimage"
];
}