diff --git a/test/rescue-system.nix b/test/boot-environment.nix similarity index 100% rename from test/rescue-system.nix rename to test/boot-environment.nix diff --git a/test/rescue-cd.nix b/test/rescue-cd.nix index ddb6a7cb6772..70c44ca2382b 100644 --- a/test/rescue-cd.nix +++ b/test/rescue-cd.nix @@ -6,7 +6,7 @@ let in # Build boot scripts for the CD that find the CD-ROM automatically. - with import ./rescue-system.nix { + with import ./boot-environment.nix { autoDetectRootDevice = true; rootLabel = cdromLabel; stage2Init = "/init"; diff --git a/test/system-configuration.nix b/test/system-configuration.nix index 531dc0d5cb85..a1c90813e6b7 100644 --- a/test/system-configuration.nix +++ b/test/system-configuration.nix @@ -8,7 +8,7 @@ let grubDevice = "/dev/hda"; # Build boot scripts. - bootEnv = import ./rescue-system.nix { + bootEnv = import ./boot-environment.nix { autoDetectRootDevice = false; inherit rootDevice; stage2Init = "/init"; # !!! should be bootEnv.bootStage2;