about summary refs log tree commit diff
path: root/pkgs/misc/uboot
diff options
context:
space:
mode:
authorChristian Kögler <ck3d@gmx.de>2021-06-04 22:47:53 +0200
committerChristian Kögler <ck3d@gmx.de>2021-07-11 13:43:16 +0200
commit1dec71e52a2e71974d01a525f82a34f7c83869cd (patch)
treee80712b4c55523c8b755f4d84f1f66a4eca6a8dc /pkgs/misc/uboot
parent15586a40557a9d3b1822ed4a9241b3c797d8a52a (diff)
downloadnixlib-1dec71e52a2e71974d01a525f82a34f7c83869cd.tar
nixlib-1dec71e52a2e71974d01a525f82a34f7c83869cd.tar.gz
nixlib-1dec71e52a2e71974d01a525f82a34f7c83869cd.tar.bz2
nixlib-1dec71e52a2e71974d01a525f82a34f7c83869cd.tar.lz
nixlib-1dec71e52a2e71974d01a525f82a34f7c83869cd.tar.xz
nixlib-1dec71e52a2e71974d01a525f82a34f7c83869cd.tar.zst
nixlib-1dec71e52a2e71974d01a525f82a34f7c83869cd.zip
ubootRockPro64: Fix boot hanging
Diffstat (limited to 'pkgs/misc/uboot')
-rw-r--r--pkgs/misc/uboot/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix
index 3d7e9e48eb35..71f3e13fc906 100644
--- a/pkgs/misc/uboot/default.nix
+++ b/pkgs/misc/uboot/default.nix
@@ -401,6 +401,13 @@ in {
 
   ubootRockPro64 = buildUBoot {
     extraMakeFlags = [ "all" "u-boot.itb" ];
+    extraPatches = [
+      # https://patchwork.ozlabs.org/project/uboot/list/?series=237654&archive=both&state=*
+      (fetchpatch {
+        url = "https://patchwork.ozlabs.org/series/237654/mbox/";
+        sha256 = "0aiw9zk8w4msd3v8nndhkspjify0yq6a5f0zdy6mhzs0ilq896c3";
+      })
+    ];
     defconfig = "rockpro64-rk3399_defconfig";
     extraMeta.platforms = ["aarch64-linux"];
     BL31="${armTrustedFirmwareRK3399}/bl31.elf";