blob: 2c2cf4b2b4ab471a141f8af0181d97ac8fcfc81c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/usr/bin/perl -w
use strict;
my $new_entry = -1;
my $nr = 0;
my ($id,$subvendor,$subdevice);
my %data;
my $pciid=0;
while (<>) {
# defines in header file
if (/#define\s+(BTTV_BOARD_\w+)\s+0x([0-9a-fA-F]*).*/) {
$data{$1}->{nr} = hex $2;
next;
}
# cx88_boards
if (/\[(BTTV_BOARD_\w+)\]/) {
$id = $1;
$data{$id}->{id} = $id;
# $data{$id}->{nr} = $nr++;
};
if (/0x([0-9a-fA-F]...)([0-9a-fA-F]...)/) {
$subvendor = $2;
$subdevice = $1;
if (/(BTTV_BOARD_\w+)/) {
push @{$data{$1}->{subid}}, "$subvendor:$subdevice";
undef $subvendor;
undef $subdevice;
}
}
next unless defined($id);
if (!defined($data{$id}) || !defined($data{$id}->{name})) {
$data{$id}->{name} = $1 if (/\.name\s*=\s*\"([^\"]+)\"/);
}
if (/0x([0-9]...)([0-9]...)/) {
$subvendor = $1;
$subdevice = $2;
}
}
foreach my $item (sort { $data{$a}->{nr} <=> $data{$b}->{nr} } keys %data) {
printf("%3d -> %-51s", $data{$item}->{nr}, $data{$item}->{name});
printf(" [%s]",join(",",@{$data{$item}->{subid}}))
if defined($data{$item}->{subid});
print "\n";
}
|