aboutsummaryrefslogtreecommitdiff
path: root/pkgs/misc/uboot/default.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-03-16 19:27:01 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-03-18 18:53:12 +0200
commit4fe75d11b2efdd3325ee8eaa4347626f1a950dbd (patch)
tree4a1d77ce5f0449bcfccfece5b5efd55eaa245ccc /pkgs/misc/uboot/default.nix
parent4b77663edfba2c4e15db46c1ba900fa9819e4325 (diff)
U-Boot: Make ubootJetsonTK1 install even more files
Diffstat (limited to '')
-rw-r--r--pkgs/misc/uboot/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix
index 4a96deadaea2..807bc48a6428 100644
--- a/pkgs/misc/uboot/default.nix
+++ b/pkgs/misc/uboot/default.nix
@@ -147,6 +147,11 @@ in rec {
defconfig = "jetson-tk1_defconfig";
extraMeta.platforms = ["armv7l-linux"];
filesToInstall = ["u-boot" "u-boot.dtb" "u-boot-dtb-tegra.bin" "u-boot-nodtb-tegra.bin"];
+ # tegra-uboot-flasher expects this exact directory layout, sigh...
+ postInstall = ''
+ mkdir -p $out/spl
+ cp spl/u-boot-spl $out/spl/
+ '';
};
ubootOdroidXU3 = buildUBoot rec {