summaryrefslogtreecommitdiffstats
path: root/utils/trimpcitable
diff options
context:
space:
mode:
Diffstat (limited to 'utils/trimpcitable')
-rwxr-xr-xutils/trimpcitable21
1 files changed, 0 insertions, 21 deletions
diff --git a/utils/trimpcitable b/utils/trimpcitable
deleted file mode 100755
index c2cbe425e..000000000
--- a/utils/trimpcitable
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/perl
-
-foreach $n (@ARGV) {
- $n =~ s/\.ko$//;
- $mods{"\"$n\""} = $n;
-}
-
-while (<STDIN>) {
- chop;
- @a = split;
- if ($mods{$a[2]} || $mods{$a[4]}) {
- print "$_\n";
- } elsif ($_ =~ /Card:Intel.*81[05]/) {
- print "$_\n";
- } elsif ($a[4] =~ /\"ignore\"/) {
- print "$_\n";
- } elsif ($a[4] =~ /\"unknown\"/) {
- print "$_\n";
- }
-
-}