diff options
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index ed179a6ec..ff65082d6 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -296,6 +296,9 @@ sub exitInstall { installStepsCall($o, $auto, 'exitInstall', getNextStep($::o) eq 'exitInstall'); } +sub exitMove { + move::exit(); +} sub start_i810fb() { @@ -424,7 +427,7 @@ sub main { if ($::move) { require move; - move::init(); + move::init($o); } $o->{prefix} = $::prefix = $::testing ? "/tmp/test-perl-install" : $::live || $::move ? "" : "/mnt"; |