U-Boot: Add platforms to legacy U-Boots

Or they will be tried to be built on x86_64 since #19990.
This commit is contained in:
Tuomas Tynkkynen 2016-12-05 02:17:41 +02:00
parent a7c31ce165
commit 1e7bb272e1
3 changed files with 12 additions and 0 deletions

View File

@ -50,4 +50,8 @@ stdenv.mkDerivation {
mkdir -p $out/bin
cp tools/{envcrc,mkimage} $out/bin
'';
meta = {
platforms = [ "armv5tel-linux" ];
};
}

View File

@ -57,4 +57,8 @@ stdenv.mkDerivation {
mkdir -p $out/bin
cp tools/{envcrc,mkimage} $out/bin
'';
meta = {
platforms = [ "mipsel-linux" ];
};
}

View File

@ -54,4 +54,8 @@ stdenv.mkDerivation {
mkdir -p $out/bin
cp tools/{envcrc,mkimage} $out/bin
'';
meta = {
platforms = [ "armv5tel-linux" ];
};
}