lib/platforms: add "armv6l-linux" to all platforms

It was only in mesaPlatforms, which caused nix appear unsupported in there.
This commit is contained in:
Vladimír Čunát 2014-09-27 11:21:10 +02:00
parent 9da620a723
commit 7323d5e128

View file

@ -2,7 +2,7 @@ let lists = import ./lists.nix; in
rec {
gnu = linux; /* ++ hurd ++ kfreebsd ++ ... */
linux = ["i686-linux" "x86_64-linux" "armv5tel-linux" "armv7l-linux" "mips64el-linux"];
linux = ["i686-linux" "x86_64-linux" "armv5tel-linux" "armv6l-linux" "armv7l-linux" "mips64el-linux"];
darwin = ["x86_64-darwin"];
freebsd = ["i686-freebsd" "x86_64-freebsd"];
openbsd = ["i686-openbsd" "x86_64-openbsd"];