From 91a66e72dc2f215928691c46cb1e810dc19dd61f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 13 Nov 2006 16:19:57 +0000 Subject: [PATCH] * rescue-system -> boot-environment. svn path=/nixu/trunk/; revision=7017 --- test/{rescue-system.nix => boot-environment.nix} | 0 test/rescue-cd.nix | 2 +- test/system-configuration.nix | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename test/{rescue-system.nix => boot-environment.nix} (100%) 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 ddb6a7cb677..70c44ca2382 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 531dc0d5cb8..a1c90813e6b 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;