summaryrefslogtreecommitdiffstats
path: root/utils/trimpcitable
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-04-04 18:31:27 +0000
committerMatt Wilson <msw@redhat.com>2001-04-04 18:31:27 +0000
commit2d396a7265004a7e358a45d4f3964f4b0f7ad03c (patch)
tree2ff9c190565e6ef4bab5977b281cec2723cd402d /utils/trimpcitable
parent93d640d097fd9f265ff2164de54b93aa40d37958 (diff)
downloadanaconda-2d396a7265004a7e358a45d4f3964f4b0f7ad03c.tar.gz
anaconda-2d396a7265004a7e358a45d4f3964f4b0f7ad03c.tar.xz
anaconda-2d396a7265004a7e358a45d4f3964f4b0f7ad03c.zip
don't drop the unknown entries from the pcitable (#32082
Diffstat (limited to 'utils/trimpcitable')
-rwxr-xr-xutils/trimpcitable2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/trimpcitable b/utils/trimpcitable
index 76ab26a4f..1aac47376 100755
--- a/utils/trimpcitable
+++ b/utils/trimpcitable
@@ -14,6 +14,8 @@ while (<STDIN>) {
print "$_\n";
} elsif ($a[4] =~ /\"ignore\"/) {
print "$_\n";
+ } elsif ($a[4] =~ /\"unknown\"/) {
+ print "$_\n";
}
}