diff options
-rw-r--r-- | perl-install/detect_devices.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 4f00cf820..5aab1bc12 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -289,6 +289,7 @@ sub getSCSI_26() { my $usb_dir = readlink("$dir/block/device") =~ m!/usb! && "$dir/block/device/../../../.."; my $get_usb = sub { chomp_(cat_("$usb_dir/$_[0]")) }; + # handle both old and new kernels: my $node = -e "$dir/block" ? "$dir/block" : top(glob_("$dir/block*")); my ($device) = readlink($node) =~ m!/block/(.*)!; die "cannot get info for device ($host, $channel, $id, $lun)" if !$device; |