From ff576c1833b7705dedd7e32c93700b30f2957853 Mon Sep 17 00:00:00 2001 From: Herton Ronaldo Krzesinski Date: Wed, 25 Nov 2009 12:02:56 +0000 Subject: update drakx to get proper sysfs device path from usb devices --- perl-install/detect_devices.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/detect_devices.pm') 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()); -- cgit v1.2.1