summaryrefslogtreecommitdiffstats
path: root/perl-install/install2.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-03-05 22:04:26 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-03-05 22:04:26 +0000
commitdeedfb36c22129e6ded337e13b55b092263e7e4a (patch)
treeb07b41420bc009ec957211bd11bd4eaba058b93e /perl-install/install2.pm
parentec07dbfe21cc270f7a06ddb1288e1a2fa5ae4c50 (diff)
downloaddrakx-backup-do-not-use-deedfb36c22129e6ded337e13b55b092263e7e4a.tar
drakx-backup-do-not-use-deedfb36c22129e6ded337e13b55b092263e7e4a.tar.gz
drakx-backup-do-not-use-deedfb36c22129e6ded337e13b55b092263e7e4a.tar.bz2
drakx-backup-do-not-use-deedfb36c22129e6ded337e13b55b092263e7e4a.tar.xz
drakx-backup-do-not-use-deedfb36c22129e6ded337e13b55b092263e7e4a.zip
(main): remove unloading vfat (not needed anymore with mdk-stage1)
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r--perl-install/install2.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm
index 0379648ae..db7e73f73 100644
--- a/perl-install/install2.pm
+++ b/perl-install/install2.pm
@@ -458,7 +458,6 @@ sub main {
$o->{prefix} = $::testing ? "/tmp/test-perl-install" : $::live ? "" : "/mnt";
mkdir $o->{prefix}, 0755;
- modules::unload($_) foreach qw(vfat msdos fat);
modules::load_deps(($::testing ? ".." : "") . "/modules/modules.dep");
modules::read_stage1_conf($_) foreach "/tmp/conf.modules", "/etc/modules.conf";
modules::read_already_loaded();
@@ -512,6 +511,7 @@ sub main {
$o->{compssListLevel} = 50;
push @auto, 'selectInstallClass', 'selectMouse', 'doPartitionDisks', 'choosePackages', 'configureTimezone', 'configureX', 'exitInstall';
}
+#- push @auto, 'selectLanguage', 'selectInstallClass', 'selectMouse';
foreach (@auto) {
eval "undef *" . (!/::/ && "install_steps_interactive::") . $_;