summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
authorThierry.Vignaud <thierry.vignaud@gmail.com>2014-06-19 14:27:08 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-06-19 18:44:45 +0200
commit9c81fd807ec210e12649f84ef50bb75b4a600c08 (patch)
tree3c7b1d108756f97a03d1591fa75b88b4f04164f4 /perl-install/detect_devices.pm
parent7b540590f2a17dd10810c133a9ce539a9c19834d (diff)
downloaddrakx-9c81fd807ec210e12649f84ef50bb75b4a600c08.tar
drakx-9c81fd807ec210e12649f84ef50bb75b4a600c08.tar.gz
drakx-9c81fd807ec210e12649f84ef50bb75b4a600c08.tar.bz2
drakx-9c81fd807ec210e12649f84ef50bb75b4a600c08.tar.xz
drakx-9c81fd807ec210e12649f84ef50bb75b4a600c08.zip
do not bother creating /dev/fd[01]
now done by udev
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 687ab8b2f..49cfd2346 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -107,7 +107,7 @@ sub floppies {
#- then hal probes /dev/fd0 and triggers floppy module loading through kernel's kmod
if (any { (split)[1] eq 'fd' } cat_("/proc/devices")) {
@fds = map {
- my $info = c::floppy_info(devices::make("fd$_"));
+ my $info = c::floppy_info("/dev/fd$_");
if_($info && $info ne '(null)', { device => "fd$_", media_type => 'fd', info => $info });
} qw(0 1);
}