diff options
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 3f1d575fd..30c60a8ef 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -822,8 +822,9 @@ sub miscellaneous { if (my $ramsize = $o->{miscellaneous}{memsize} and !/mem=/) { $_ .= " mem=$ramsize"; } - if (my @l = detect_devices::getIDEBurners() and !/ide-scsi/) { - $_ .= " " . join(" ", (map { "$_=ide-scsi" } @l), + if (my @l = detect_devices::IDEburners() and !/ide-scsi/) { + $_ .= " " . join(" ", (map { "$_->{device}=ide-scsi" } @l), + #- in that case, also add ide-floppy otherwise ide-scsi will be used! map { "$_->{device}=ide-floppy" } detect_devices::ide_zips()); } if ($o->{miscellaneous}{HDPARM}) { |