summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-04-04 18:32:48 +0000
committerMatt Wilson <msw@redhat.com>2001-04-04 18:32:48 +0000
commite94490d48b995bc2e0e3620105b7329241916fd5 (patch)
tree2ff9c190565e6ef4bab5977b281cec2723cd402d /utils
parent594917cd2e62b40db0163f7a0b0681a59143c363 (diff)
downloadanaconda-e94490d48b995bc2e0e3620105b7329241916fd5.tar.gz
anaconda-e94490d48b995bc2e0e3620105b7329241916fd5.tar.xz
anaconda-e94490d48b995bc2e0e3620105b7329241916fd5.zip
don't drop the unknown entries from the pcitable (#32082)
Diffstat (limited to 'utils')
-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";
}
}