diff options
Diffstat (limited to 'rescue')
-rwxr-xr-x | rescue/drvinst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rescue/drvinst b/rescue/drvinst index 9812b72e1..177f3cbde 100755 --- a/rescue/drvinst +++ b/rescue/drvinst @@ -45,6 +45,7 @@ sub install_module($$) { foreach $card (pci_probe()) { $card->{type} eq "DISPLAY_VGA" and next; $card->{driver} eq "unknown" and next; + $card->{driver} =~ "Card:" and next; if (!@ARGV || grep { $card->{type} =~ /$_/i } @ARGV) { install_module($card->{driver}, $card->{description}); @@ -55,6 +56,9 @@ foreach $card (pci_probe()) { #------------------------------------------------- #- $Log$ +#- Revision 1.3 2001/03/29 11:33:28 gc +#- test for "Card:" and not install, some videoboards are not reported as DISPLAY_VGA :-( +#- #- Revision 1.2 2001/02/12 18:42:17 uid553 #- pixelization #- |