diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-05-11 03:53:33 -0400 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-01-02 14:54:02 +0100 |
commit | 62254811298b98038ac64194a1ee5f4cca2b32c5 (patch) | |
tree | ffdbfdd2e0e70070509efcf71b4d82060f7df04b /perl-install | |
parent | 3769edb5f1f083d748437c7367d99a4b86271e88 (diff) | |
download | drakx-62254811298b98038ac64194a1ee5f4cca2b32c5.tar drakx-62254811298b98038ac64194a1ee5f4cca2b32c5.tar.gz drakx-62254811298b98038ac64194a1ee5f4cca2b32c5.tar.bz2 drakx-62254811298b98038ac64194a1ee5f4cca2b32c5.tar.xz drakx-62254811298b98038ac64194a1ee5f4cca2b32c5.zip |
fix message (mga#51414)
the message is actually about loading ide-cd_mod & sr_mod
We don't load any other IDE modules for 13 years, since
commit bf78357f11057c2ce0bb8b40cc3e0f7609665c45
We later added support for SCSI optical drives too in
commit 9602001c7823079a8e8ca0e737a8fe2f6c0db0d2
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_interactive.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 147a58a6d..78b7861b7 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - bootloader: o skip swap in the list of partitions (mga#15767) +- fix a message (mga#51414) - misc cleanups Version 17.11 - 1 January 2016 diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index c78535a37..ab2085a06 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -261,7 +261,7 @@ sub setupSCSI { install::any::configure_pcmcia($o); { - my $_w = $o->wait_message(N("IDE"), N("Configuring IDE")); + my $_w = $o->wait_message(N("CD/DVD"), N("Configuring CD/DVD")); modules::load(modules::category2modules('disk/cdrom')); } modules::interactive::load_category($o, $o->{modules_conf}, 'bus/firewire', 1); |