diff options
author | Mike Fulbright <msf@redhat.com> | 2001-02-14 01:34:11 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-02-14 01:34:11 +0000 |
commit | 39a1efb88dceeb2527fee518a841b3c055fd38c0 (patch) | |
tree | 401389a659eee0e08366c95e939a3d0b3788ac10 /utils | |
parent | 1985c90ac0bbf4eeec16fc7a15eecd5c1100d91c (diff) | |
download | anaconda-39a1efb88dceeb2527fee518a841b3c055fd38c0.tar.gz anaconda-39a1efb88dceeb2527fee518a841b3c055fd38c0.tar.xz anaconda-39a1efb88dceeb2527fee518a841b3c055fd38c0.zip |
modified trimpcitable to include ignore entries, needed to fix bug #21920
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/trimpcitable | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/trimpcitable b/utils/trimpcitable index ec9a3216c..80f1ed370 100755 --- a/utils/trimpcitable +++ b/utils/trimpcitable @@ -12,5 +12,8 @@ while (<STDIN>) { print "$_\n"; } elsif ($_ =~ /Card:Intel.*81[05]/) { print "$_\n"; + } elsif ($a[2] =~ /\"ignore\"/ || $a[4] =~ /\"ignore\"/) { + print "$_\n"; } + } |