diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-03-29 11:33:28 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-03-29 11:33:28 +0000 |
commit | bc38378f43fe36444b15e2bc033ce1854ea26a31 (patch) | |
tree | bcbbb0a7ee1bf475648a32be72df7b33741f0de6 /rescue/drvinst | |
parent | 2da242b261350e9a71527df15d19bf5fd6b8f419 (diff) | |
download | drakx-bc38378f43fe36444b15e2bc033ce1854ea26a31.tar drakx-bc38378f43fe36444b15e2bc033ce1854ea26a31.tar.gz drakx-bc38378f43fe36444b15e2bc033ce1854ea26a31.tar.bz2 drakx-bc38378f43fe36444b15e2bc033ce1854ea26a31.tar.xz drakx-bc38378f43fe36444b15e2bc033ce1854ea26a31.zip |
test for "Card:" and not install, some videoboards are not reported as DISPLAY_VGA :-(
Diffstat (limited to 'rescue/drvinst')
-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 #- |