summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-11-25 11:06:05 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-11-25 11:06:05 +0000
commitc7835f051c06972bbd9e84dd9b48e9d93e68d90c (patch)
tree388e43c9f41e55cb43bdf62f10292444f47dd161 /perl-install/detect_devices.pm
parentbd07bef5005f39e7cf2c3b4fbb576d124269a247 (diff)
downloaddrakx-c7835f051c06972bbd9e84dd9b48e9d93e68d90c.tar
drakx-c7835f051c06972bbd9e84dd9b48e9d93e68d90c.tar.gz
drakx-c7835f051c06972bbd9e84dd9b48e9d93e68d90c.tar.bz2
drakx-c7835f051c06972bbd9e84dd9b48e9d93e68d90c.tar.xz
drakx-c7835f051c06972bbd9e84dd9b48e9d93e68d90c.zip
don't fake ide-scsi for move (otherwise, we would need to do it in stage1 too)
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index 2b79772aa..6b329d816 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -54,7 +54,7 @@ sub cdroms__faking_ide_scsi() { grep { $_->{media_type} eq 'cdrom' } cdroms_and_
sub cdroms_and_zips__faking_ide_scsi() {
my @l = grep { $_->{media_type} eq 'cdrom' || member($_->{media_type}, 'fd', 'hd') && isZipDrive($_) } get();
- if (my @l_need_fake = grep { !$::isStandalone && $_->{bus} eq 'ide' && !($_->{media_type} eq 'cdrom' && !isBurner($_)) } @l) {
+ if (my @l_need_fake = grep { !$::isStandalone && !$::move && $_->{bus} eq 'ide' && !($_->{media_type} eq 'cdrom' && !isBurner($_)) } @l) {
require modules;
modules::add_probeall('scsi_hostadapter', 'ide-scsi');