summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Ericson <jericson@galois.com>2016-12-15 17:05:39 -0500
committerJohn Ericson <jericson@galois.com>2016-12-15 17:05:39 -0500
commit670256dc399ab637fa94df9a90fb13f275c39f8a (patch)
tree758de49a80062ee83a40f3144518b5b874703ebc
parenta94af71da71ebc4a52c002891d813cf2689fc950 (diff)
downloadnixpkgs-670256dc399ab637fa94df9a90fb13f275c39f8a.tar
nixpkgs-670256dc399ab637fa94df9a90fb13f275c39f8a.tar.gz
nixpkgs-670256dc399ab637fa94df9a90fb13f275c39f8a.tar.bz2
nixpkgs-670256dc399ab637fa94df9a90fb13f275c39f8a.tar.lz
nixpkgs-670256dc399ab637fa94df9a90fb13f275c39f8a.tar.xz
nixpkgs-670256dc399ab637fa94df9a90fb13f275c39f8a.tar.zst
nixpkgs-670256dc399ab637fa94df9a90fb13f275c39f8a.zip
linux stdenv: Rename the `bootstrap` directory to `bootstrap-files`
-rw-r--r--pkgs/stdenv/linux/bootstrap-files/armv5tel.nix (renamed from pkgs/stdenv/linux/bootstrap/armv5tel.nix)0
-rw-r--r--pkgs/stdenv/linux/bootstrap-files/armv6l.nix (renamed from pkgs/stdenv/linux/bootstrap/armv6l.nix)0
-rw-r--r--pkgs/stdenv/linux/bootstrap-files/armv7l.nix (renamed from pkgs/stdenv/linux/bootstrap/armv7l.nix)0
-rw-r--r--pkgs/stdenv/linux/bootstrap-files/i686.nix (renamed from pkgs/stdenv/linux/bootstrap/i686.nix)0
-rw-r--r--pkgs/stdenv/linux/bootstrap-files/loongson2f.nix (renamed from pkgs/stdenv/linux/bootstrap/loongson2f.nix)0
-rw-r--r--pkgs/stdenv/linux/bootstrap-files/x86_64.nix (renamed from pkgs/stdenv/linux/bootstrap/x86_64.nix)0
-rw-r--r--pkgs/stdenv/linux/default.nix12
7 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/stdenv/linux/bootstrap/armv5tel.nix b/pkgs/stdenv/linux/bootstrap-files/armv5tel.nix
index 9781414895b..9781414895b 100644
--- a/pkgs/stdenv/linux/bootstrap/armv5tel.nix
+++ b/pkgs/stdenv/linux/bootstrap-files/armv5tel.nix
diff --git a/pkgs/stdenv/linux/bootstrap/armv6l.nix b/pkgs/stdenv/linux/bootstrap-files/armv6l.nix
index 76fe900b9ae..76fe900b9ae 100644
--- a/pkgs/stdenv/linux/bootstrap/armv6l.nix
+++ b/pkgs/stdenv/linux/bootstrap-files/armv6l.nix
diff --git a/pkgs/stdenv/linux/bootstrap/armv7l.nix b/pkgs/stdenv/linux/bootstrap-files/armv7l.nix
index 91452d639c4..91452d639c4 100644
--- a/pkgs/stdenv/linux/bootstrap/armv7l.nix
+++ b/pkgs/stdenv/linux/bootstrap-files/armv7l.nix
diff --git a/pkgs/stdenv/linux/bootstrap/i686.nix b/pkgs/stdenv/linux/bootstrap-files/i686.nix
index cf484fd9253..cf484fd9253 100644
--- a/pkgs/stdenv/linux/bootstrap/i686.nix
+++ b/pkgs/stdenv/linux/bootstrap-files/i686.nix
diff --git a/pkgs/stdenv/linux/bootstrap/loongson2f.nix b/pkgs/stdenv/linux/bootstrap-files/loongson2f.nix
index 8e22a274974..8e22a274974 100644
--- a/pkgs/stdenv/linux/bootstrap/loongson2f.nix
+++ b/pkgs/stdenv/linux/bootstrap-files/loongson2f.nix
diff --git a/pkgs/stdenv/linux/bootstrap/x86_64.nix b/pkgs/stdenv/linux/bootstrap-files/x86_64.nix
index 69d08c5e981..69d08c5e981 100644
--- a/pkgs/stdenv/linux/bootstrap/x86_64.nix
+++ b/pkgs/stdenv/linux/bootstrap-files/x86_64.nix
diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix
index 34196359f52..a39ff61a8b5 100644
--- a/pkgs/stdenv/linux/default.nix
+++ b/pkgs/stdenv/linux/default.nix
@@ -7,12 +7,12 @@
 , system, platform, crossSystem, config
 
 , bootstrapFiles ?
-    if system == "i686-linux" then import ./bootstrap/i686.nix
-    else if system == "x86_64-linux" then import ./bootstrap/x86_64.nix
-    else if system == "armv5tel-linux" then import ./bootstrap/armv5tel.nix
-    else if system == "armv6l-linux" then import ./bootstrap/armv6l.nix
-    else if system == "armv7l-linux" then import ./bootstrap/armv7l.nix
-    else if system == "mips64el-linux" then import ./bootstrap/loongson2f.nix
+    if system == "i686-linux" then import ./bootstrap-files/i686.nix
+    else if system == "x86_64-linux" then import ./bootstrap-files/x86_64.nix
+    else if system == "armv5tel-linux" then import ./bootstrap-files/armv5tel.nix
+    else if system == "armv6l-linux" then import ./bootstrap-files/armv6l.nix
+    else if system == "armv7l-linux" then import ./bootstrap-files/armv7l.nix
+    else if system == "mips64el-linux" then import ./bootstrap-files/loongson2f.nix
     else abort "unsupported platform for the pure Linux stdenv"
 }: