diff options
author | Francois Pons <fpons@mandriva.com> | 2001-07-26 15:43:49 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-07-26 15:43:49 +0000 |
commit | 43377d2b8a3bbead12699b2984ca96e4c7e5d900 (patch) | |
tree | 93176bceab83b8d882aaa897f7407f0fb5bf6aa6 | |
parent | d58d791700b0b6f4098714716dfbaa40c9bb1560 (diff) | |
download | drakx-43377d2b8a3bbead12699b2984ca96e4c7e5d900.tar drakx-43377d2b8a3bbead12699b2984ca96e4c7e5d900.tar.gz drakx-43377d2b8a3bbead12699b2984ca96e4c7e5d900.tar.bz2 drakx-43377d2b8a3bbead12699b2984ca96e4c7e5d900.tar.xz drakx-43377d2b8a3bbead12699b2984ca96e4c7e5d900.zip |
add support for new modules load as described by GG.
-rw-r--r-- | perl-install/install_steps_interactive.pm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 5b5fb804f..efed8f480 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -727,6 +727,18 @@ sub afterInstallPackages($) { $o->SUPER::afterInstallPackages($o); } +sub copyKernelFromDiskette { + my ($o) = @_; + $o->ask_warn('', _("Please insert the Boot floppy used in drive %s", $o->{blank})); + $o->SUPER::copyKernelFromDiskette(); +} + +sub updateModulesFromDiskette { + my ($o) = @_; + $o->ask_warn('', _("Please insert the Update Modules floppy in drive %s", $o->{updatemodules})); + $o->SUPER::updateModulesFromDiskette(); +} + #------------------------------------------------------------------------------ sub configureNetwork { my ($o, $first_time) = @_; |