linux stdenv: Rename the `bootstrap` directory to `bootstrap-files`

+6 -6
pkgs/stdenv/linux/bootstrap/armv5tel.nix pkgs/stdenv/linux/bootstrap-files/armv5tel.nix
pkgs/stdenv/linux/bootstrap/armv6l.nix pkgs/stdenv/linux/bootstrap-files/armv6l.nix
pkgs/stdenv/linux/bootstrap/armv7l.nix pkgs/stdenv/linux/bootstrap-files/armv7l.nix
pkgs/stdenv/linux/bootstrap/i686.nix pkgs/stdenv/linux/bootstrap-files/i686.nix
pkgs/stdenv/linux/bootstrap/loongson2f.nix pkgs/stdenv/linux/bootstrap-files/loongson2f.nix
pkgs/stdenv/linux/bootstrap/x86_64.nix pkgs/stdenv/linux/bootstrap-files/x86_64.nix
+6 -6
pkgs/stdenv/linux/default.nix
··· 7 , system, platform, crossSystem, config 8 9 , bootstrapFiles ? 10 - if system == "i686-linux" then import ./bootstrap/i686.nix 11 - else if system == "x86_64-linux" then import ./bootstrap/x86_64.nix 12 - else if system == "armv5tel-linux" then import ./bootstrap/armv5tel.nix 13 - else if system == "armv6l-linux" then import ./bootstrap/armv6l.nix 14 - else if system == "armv7l-linux" then import ./bootstrap/armv7l.nix 15 - else if system == "mips64el-linux" then import ./bootstrap/loongson2f.nix 16 else abort "unsupported platform for the pure Linux stdenv" 17 }: 18
··· 7 , system, platform, crossSystem, config 8 9 , bootstrapFiles ? 10 + if system == "i686-linux" then import ./bootstrap-files/i686.nix 11 + else if system == "x86_64-linux" then import ./bootstrap-files/x86_64.nix 12 + else if system == "armv5tel-linux" then import ./bootstrap-files/armv5tel.nix 13 + else if system == "armv6l-linux" then import ./bootstrap-files/armv6l.nix 14 + else if system == "armv7l-linux" then import ./bootstrap-files/armv7l.nix 15 + else if system == "mips64el-linux" then import ./bootstrap-files/loongson2f.nix 16 else abort "unsupported platform for the pure Linux stdenv" 17 }: 18