From 85c438472237715f9c0403512c07faa2040329ab Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 12 Feb 2007 14:20:50 +0000 Subject: move detection code from lspcidrake.pl into MDV::Lspciusb --- lspcidrake.pl | 63 +++-------------------------------------------------------- 1 file changed, 3 insertions(+), 60 deletions(-) (limited to 'lspcidrake.pl') diff --git a/lspcidrake.pl b/lspcidrake.pl index 24677fa..9f58948 100755 --- a/lspcidrake.pl +++ b/lspcidrake.pl @@ -23,70 +23,13 @@ use lib qw(/usr/lib/libDrakX); use modalias; use MDK::Common; +use MDV::Lspciusb; if (@ARGV) { print "$_: " . join(",", modalias::get_modules($_)) . "\n" foreach @ARGV; exit; } -sub read_pciids { - my ($f) = @_; - my %drivers; - my ($id1, $id2, $vendor, $line); - foreach (cat_($f)) { - chomp; $line++; - next if /^#/ || /^;/ || /^\s*$/; - if (/^C\s/) { - last; - } elsif (my ($subid1, $subid2, $text) = /^\t\t(\S+)\s+(\S+)\s+(.+)/) { - $text =~ s/\t/ /g; - $id1 && $id2 or die "$f:$line: unexpected device\n"; - $drivers{sprintf qq(%04x%04x%04x%04x), hex($id1), hex($id2), hex($subid1), hex($subid2)} = "$vendor|$text"; - } elsif (/^\t(\S+)\s+(.+)/) { - ($id2, $text) = ($1, $2); - $text =~ s/\t/ /g; - $id1 && $id2 or die "$f:$line: unexpected device\n"; - $drivers{sprintf qq(%04x%04xffffffff), hex($id1), hex($id2)} = "$vendor|$text"; - } elsif (/^(\S+)\s+(.+)/) { - $id1 = $1; - $vendor = $2; - } else { - warn "$f:$line: bad line: $_\n"; - } - } - \%drivers; -} - -my $pciids = read_pciids("/usr/share/pci.ids"); - -my %bus_get_description = ( - pci => sub { - my ($dev_path, $values) = @_; - if (my @ids = $values =~ /^v([[:xdigit:]]{8})d([[:xdigit:]]{8})sv([[:xdigit:]]{8})sd([[:xdigit:]]{8})/) { - my ($v, $d, $sv, $sd) = map { hex ($_) } @ids; - return $pciids->{sprintf(qq(%04x%04x%04x%04x), $v, $d, $sv, $sd)} || - $pciids->{sprintf(qq(%04x%04xffffffff), $v, $d)}; - } - }, - usb => sub { - my ($dev_path, $values) = @_; - $full_path = dirname($dev_path) . "/" . readlink($dev_path); - $parent_path = dirname($full_path); - chomp_(cat_("$parent_path/product")); - }, -); - -foreach my $modalias_path (map { glob("/sys/bus/$_/devices/*/modalias") } qw(pci usb)) { - my $modalias = chomp_(cat_($modalias_path)); - my $dev_path = dirname($modalias_path); - my ($bus, $values) = $modalias =~ /^([^:]+):(\S+)$/; # modalias::get_bus - my @modules = modalias::get_modules($modalias); - my $module = first(@modules) || "unknown"; - my $modules = @modules > 1 ? " (" . join(",", @modules) . ")" : ""; - my $desc; - if (my $get_desc = $bus_get_description{$bus}) { - $desc = $get_desc->($dev_path, $values); - } - $desc ||= "unknown"; - print "$module\t: $desc$modules\n"; +foreach my $device (MDV::Lspciusb::list()) { + print "$device->{module}\t: $device->{descr}$device->{modules}\n"; } -- cgit v1.2.1