diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-02-10 17:00:12 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-02-10 17:00:12 +0000 |
commit | 5efc8973b6431ab0ed8dfeba61f9f37a34705155 (patch) | |
tree | 8dd406ceebf947cce4f52bc8a050d14b97c8da79 /perl-install/any.pm | |
parent | 74b6b5e77772d6d022feb324aed3e7e2113e80df (diff) | |
download | drakx-5efc8973b6431ab0ed8dfeba61f9f37a34705155.tar drakx-5efc8973b6431ab0ed8dfeba61f9f37a34705155.tar.gz drakx-5efc8973b6431ab0ed8dfeba61f9f37a34705155.tar.bz2 drakx-5efc8973b6431ab0ed8dfeba61f9f37a34705155.tar.xz drakx-5efc8973b6431ab0ed8dfeba61f9f37a34705155.zip |
no need to fake scsi for ide anymore (hopefully!)
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 9a2c17472..3928c4b0b 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -921,7 +921,7 @@ sub config_dvd { #- can't have both a devfs and a non-devfs config #- the /etc/sysconfig/rawdevices solution gives errors with devfs - my @dvds = grep { detect_devices::isDvdDrive($_) } detect_devices::cdroms__faking_ide_scsi() or return; + my @dvds = grep { detect_devices::isDvdDrive($_) } detect_devices::cdroms() or return; log::l("configuring DVD: " . join(" ", map { $_->{device} } @dvds)); #- create /dev/dvd symlink |