about summary refs log tree commit diff
path: root/pkgs/stdenv/linux
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2013-01-05 23:28:22 +0400
committerMichael Raskin <7c6f434c@mail.ru>2013-01-05 23:28:22 +0400
commited2f075930f3f7280136c7863dbc5efc3df94b51 (patch)
treeb88907f515c5b3270847ddfd8369c7208b202bdf /pkgs/stdenv/linux
parent21e57a0d08e054813385773402b0dd568c8f6f9e (diff)
downloadnixlib-ed2f075930f3f7280136c7863dbc5efc3df94b51.tar
nixlib-ed2f075930f3f7280136c7863dbc5efc3df94b51.tar.gz
nixlib-ed2f075930f3f7280136c7863dbc5efc3df94b51.tar.bz2
nixlib-ed2f075930f3f7280136c7863dbc5efc3df94b51.tar.lz
nixlib-ed2f075930f3f7280136c7863dbc5efc3df94b51.tar.xz
nixlib-ed2f075930f3f7280136c7863dbc5efc3df94b51.tar.zst
nixlib-ed2f075930f3f7280136c7863dbc5efc3df94b51.zip
ARMv7l fails in strange way with ARMv5 bootstrap but works with ARMv6 bootstrap
Diffstat (limited to 'pkgs/stdenv/linux')
-rw-r--r--pkgs/stdenv/linux/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix
index 21867be0b440..c2e2045cbd18 100644
--- a/pkgs/stdenv/linux/default.nix
+++ b/pkgs/stdenv/linux/default.nix
@@ -17,7 +17,7 @@ rec {
     else if system == "powerpc-linux" then import ./bootstrap/powerpc
     else if system == "armv5tel-linux" then import ./bootstrap/armv5tel
     else if system == "armv6l-linux" then import ./bootstrap/armv6l
-    else if system == "armv7l-linux" then import ./bootstrap/armv5tel
+    else if system == "armv7l-linux" then import ./bootstrap/armv6l
     else if system == "mips64el-linux" then import ./bootstrap/loongson2f
     else abort "unsupported platform for the pure Linux stdenv";