diff options
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/detect_devices.pm | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 4b0e55d26..5d9679476 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -3,6 +3,9 @@ - diskdrake: o fix resizing/formatting ntfs (broken because of ntfs-3g switch in previous release) +- detect_devices: + o provide sysfs device path on Firewire and PCMCIA bus + (to be able to fix #33950 in drakx-net) Version 10.9 - 5 March 2008 diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 5f5d25e19..1f048672d 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -821,6 +821,7 @@ sub firewire_probe() { specifier_id => hex($get->("$dir/specifier_id")), specifier_version => hex($get->("$dir/version")), bus => 'Firewire', + sysfs_device => $dir, }; } grep { -f "$dev_dir/$_/specifier_id" } all($dev_dir); @@ -880,6 +881,7 @@ sub pcmcia_probe() { if_($modalias, modalias => $modalias), if_($device, device => $device), bus => 'PCMCIA', + sysfs_device => $dir, }; } all($dev_dir); } |