about summary refs log tree commit diff
path: root/pkgs/misc/uboot
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-12-05 02:17:41 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-12-05 02:17:41 +0200
commit1e7bb272e14ad362dccce242c261b74d796d5de5 (patch)
tree37c1fc45c21e532360e378f6822863aa199a5585 /pkgs/misc/uboot
parenta7c31ce16539967779c3b4a96b4e72d70afc0a35 (diff)
downloadnixlib-1e7bb272e14ad362dccce242c261b74d796d5de5.tar
nixlib-1e7bb272e14ad362dccce242c261b74d796d5de5.tar.gz
nixlib-1e7bb272e14ad362dccce242c261b74d796d5de5.tar.bz2
nixlib-1e7bb272e14ad362dccce242c261b74d796d5de5.tar.lz
nixlib-1e7bb272e14ad362dccce242c261b74d796d5de5.tar.xz
nixlib-1e7bb272e14ad362dccce242c261b74d796d5de5.tar.zst
nixlib-1e7bb272e14ad362dccce242c261b74d796d5de5.zip
U-Boot: Add platforms to legacy U-Boots
Or they will be tried to be built on x86_64 since #19990.
Diffstat (limited to 'pkgs/misc/uboot')
-rw-r--r--pkgs/misc/uboot/guruplug.nix4
-rw-r--r--pkgs/misc/uboot/nanonote.nix4
-rw-r--r--pkgs/misc/uboot/sheevaplug.nix4
3 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/misc/uboot/guruplug.nix b/pkgs/misc/uboot/guruplug.nix
index 258ba999bf88..9f24f1da86a4 100644
--- a/pkgs/misc/uboot/guruplug.nix
+++ b/pkgs/misc/uboot/guruplug.nix
@@ -50,4 +50,8 @@ stdenv.mkDerivation {
     mkdir -p $out/bin
     cp tools/{envcrc,mkimage} $out/bin
   '';
+
+  meta = {
+    platforms = [ "armv5tel-linux" ];
+  };
 }
diff --git a/pkgs/misc/uboot/nanonote.nix b/pkgs/misc/uboot/nanonote.nix
index 8b2de80c79b3..2783927ef57c 100644
--- a/pkgs/misc/uboot/nanonote.nix
+++ b/pkgs/misc/uboot/nanonote.nix
@@ -57,4 +57,8 @@ stdenv.mkDerivation {
     mkdir -p $out/bin
     cp tools/{envcrc,mkimage} $out/bin
   '';
+
+  meta = {
+    platforms = [ "mipsel-linux" ];
+  };
 }
diff --git a/pkgs/misc/uboot/sheevaplug.nix b/pkgs/misc/uboot/sheevaplug.nix
index 4d4f61c40a70..53d811d1a44e 100644
--- a/pkgs/misc/uboot/sheevaplug.nix
+++ b/pkgs/misc/uboot/sheevaplug.nix
@@ -54,4 +54,8 @@ stdenv.mkDerivation {
     mkdir -p $out/bin
     cp tools/{envcrc,mkimage} $out/bin
   '';
+
+  meta = {
+    platforms = [ "armv5tel-linux" ];
+  };
 }