summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Wolsieffer <benwolsieffer@gmail.com>2018-03-03 21:17:13 -0500
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-03-18 18:53:12 +0200
commit1f4bb8c61d71f2ac12f1cc6cf50aaa590df40a45 (patch)
treec78e280fde9f9c694c091d8c5b26d6979875744e
parent0ab76c5a4ed28baba3e0bfcdf25a89b78c44e0d8 (diff)
downloadnixlib-1f4bb8c61d71f2ac12f1cc6cf50aaa590df40a45.tar
nixlib-1f4bb8c61d71f2ac12f1cc6cf50aaa590df40a45.tar.gz
nixlib-1f4bb8c61d71f2ac12f1cc6cf50aaa590df40a45.tar.bz2
nixlib-1f4bb8c61d71f2ac12f1cc6cf50aaa590df40a45.tar.lz
nixlib-1f4bb8c61d71f2ac12f1cc6cf50aaa590df40a45.tar.xz
nixlib-1f4bb8c61d71f2ac12f1cc6cf50aaa590df40a45.tar.zst
nixlib-1f4bb8c61d71f2ac12f1cc6cf50aaa590df40a45.zip
uboot: add patch to increase maximum path length in extlinux.conf
This fixes problems with cross compiled kernels failing to boot.
-rw-r--r--pkgs/misc/uboot/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix
index 9e07c22fe2ab..800c00572821 100644
--- a/pkgs/misc/uboot/default.nix
+++ b/pkgs/misc/uboot/default.nix
@@ -32,6 +32,10 @@ let
         url = https://github.com/dezgeg/u-boot/commit/pythonpath-2018-03.patch;
         sha256 = "1rhhlhrwhv7ic1n5i720jfh2cxwrkssrkvinllyjy3j9k9bpzcqd";
       })
+      (fetchpatch {
+        url = https://github.com/dezgeg/u-boot/commit/extlinux-path-length-2018-03.patch;
+        sha256 = "07jafdnxvqv8lz256qy29agjc2k1zj5ad4k28r1w5qkhwj4ixmf8";
+      })
     ];
 
     postPatch = ''