From 9d719bb1f9c93148fd0cd81465169b81c524516e Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 28 Jul 2004 01:47:56 +0000 Subject: fix getSCSI_26() not sorting the drives --- perl-install/detect_devices.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'perl-install/detect_devices.pm') diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index b9a7eb521..541c0762f 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -274,6 +274,8 @@ sub getSCSI_26() { }; } all($dev_dir); + @l = sort { $a->{host} <=> $b->{host} || $a->{channel} <=> $b->{channel} || $a->{id} <=> $b->{id} || $a->{lun} <=> $b->{lun} } @l; + complete_usb_storage_info(@l); foreach (@l) { -- cgit v1.2.1