From 22f526402a9982e444af1508f1b1dd43efa28b31 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 10 Aug 2007 13:08:15 +0000 Subject: (pci_probe__real) let modules returned by modaliases be back compatible --- perl-install/detect_devices.pm | 1 + perl-install/install/NEWS | 2 ++ 2 files changed, 3 insertions(+) diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index d7b1327b6..d2a794fae 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -773,6 +773,7 @@ sub pci_probe__real() { add_addons($pcitable_addons, map { my %l; @l{qw(vendor id subvendor subid pci_domain pci_bus pci_device pci_function media_type nice_media_type driver description)} = split "\t"; + $l{driver} =~ s/snd_/snd-/; # FIXME: clean the code instead on post 2008.0 $l{$_} = hex $l{$_} foreach qw(vendor id subvendor subid); $l{bus} = 'PCI'; $l{sysfs_device} = sprintf('/sys/bus/pci/devices/%04x:%02x:%02x.%d', $l{pci_domain}, $l{pci_bus}, $l{pci_device}, $l{pci_function}); diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 5e2f25c7e..e8fd57a28 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- fix detecting sound cards + Version 10.4.164 - 9 August 2007, by Pascal "Pixel" Rigaux - cache PCI probe results -- cgit v1.2.1