summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/harddrake2
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-11-12 12:27:33 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-11-12 12:27:33 +0000
commit7f55bd4c5a3f5c19e1eec11bca84580813b21f40 (patch)
tree5c77cd8637ef496e8050e12877ca3199734a19c6 /perl-install/standalone/harddrake2
parent3bb76495d4f43920bdc8077a028a83b785aa830e (diff)
downloaddrakx-7f55bd4c5a3f5c19e1eec11bca84580813b21f40.tar
drakx-7f55bd4c5a3f5c19e1eec11bca84580813b21f40.tar.gz
drakx-7f55bd4c5a3f5c19e1eec11bca84580813b21f40.tar.bz2
drakx-7f55bd4c5a3f5c19e1eec11bca84580813b21f40.tar.xz
drakx-7f55bd4c5a3f5c19e1eec11bca84580813b21f40.zip
- fix #3047's fix
- do not show module if unknow for system bridges since it's normal
Diffstat (limited to 'perl-install/standalone/harddrake2')
-rwxr-xr-xperl-install/standalone/harddrake22
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2
index 68f081d6b..22411ac3a 100755
--- a/perl-install/standalone/harddrake2
+++ b/perl-install/standalone/harddrake2
@@ -259,7 +259,7 @@ foreach (@harddrake::data::tree) {
my $i = $_;
$_->{bus_id} = join ':', map { if_($i->{$_} ne "65535", sprintf("%lx", $i->{$_})) } qw(vendor id subvendor subid);
$_->{bus_location} = join ':', map { sprintf("%lx", $i->{$_}) } qw(pci_bus pci_device pci_function);
- delete $_->{driver} if $_->{driver} =~ /3Com.*5610/;
+ delete $_->{driver} if $Ident =~ /^ATA_STORAGE|BRIDGE|SMB_CONTROLLER$/ || $_->{description} =~ /3Com.*5610/;
}
# split description into manufacturer/description
($_->{Vendor}, $_->{description}) = split(/\|/, $_->{description}) if $_->{description};