summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
authorHerton Ronaldo Krzesinski <herton@mandriva.com.br>2009-11-25 12:02:56 +0000
committerHerton Ronaldo Krzesinski <herton@mandriva.com.br>2009-11-25 12:02:56 +0000
commitff576c1833b7705dedd7e32c93700b30f2957853 (patch)
treed6e66797bf2bd9d90fb57c49eb8e609b4aa97f74 /perl-install/detect_devices.pm
parentdb8c082d090e2f751c326a16a5b265d702de6739 (diff)
downloaddrakx-ff576c1833b7705dedd7e32c93700b30f2957853.tar
drakx-ff576c1833b7705dedd7e32c93700b30f2957853.tar.gz
drakx-ff576c1833b7705dedd7e32c93700b30f2957853.tar.bz2
drakx-ff576c1833b7705dedd7e32c93700b30f2957853.tar.xz
drakx-ff576c1833b7705dedd7e32c93700b30f2957853.zip
update drakx to get proper sysfs device path from usb devices
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index 0057ec937..62151b65a 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -835,10 +835,10 @@ sub usb_probe__real() {
add_addons($usbtable_addons, map {
my %l;
- @l{qw(vendor id media_type driver description pci_bus pci_device)} = split "\t";
+ @l{qw(vendor id media_type driver description pci_bus pci_device usb_port)} = split "\t";
$l{media_type} = join('|', grep { $_ ne '(null)' } split('\|', $l{media_type}));
$l{$_} = hex $l{$_} foreach qw(vendor id);
- $l{sysfs_device} = "/sys/class/usb_device/usbdev$l{pci_bus}.$l{pci_device}/device";
+ $l{sysfs_device} = "/sys/bus/usb/devices/$l{pci_bus}-" . ($l{usb_port} + 1);
$l{bus} = 'USB';
\%l;
} c::usb_probe());