diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-03-05 22:04:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-03-05 22:04:26 +0000 |
commit | deedfb36c22129e6ded337e13b55b092263e7e4a (patch) | |
tree | b07b41420bc009ec957211bd11bd4eaba058b93e /perl-install | |
parent | ec07dbfe21cc270f7a06ddb1288e1a2fa5ae4c50 (diff) | |
download | drakx-deedfb36c22129e6ded337e13b55b092263e7e4a.tar drakx-deedfb36c22129e6ded337e13b55b092263e7e4a.tar.gz drakx-deedfb36c22129e6ded337e13b55b092263e7e4a.tar.bz2 drakx-deedfb36c22129e6ded337e13b55b092263e7e4a.tar.xz drakx-deedfb36c22129e6ded337e13b55b092263e7e4a.zip |
(main): remove unloading vfat (not needed anymore with mdk-stage1)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install2.pm | 2 |
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::") . $_; |