From 2c668261d41bd68061d2a52844a0fb15c548abd4 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 7 Sep 2005 14:11:10 +0000 Subject: silent error when ahci or ata_piix insmod fail (ahci fails on vmware) --- perl-install/modules.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 56ab526a3..dc7783659 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -135,6 +135,7 @@ sub load_category { my @l = ( (map { my $other = { ahci => 'ata_piix', ata_piix => 'ahci' }->{$_->{driver}}; + $_->{try} = 1 if $other; ($_, if_($other, { %$_, driver => $other })); } probe_category($category)), (map { { driver => $_, description => $_, try => 1 } } @try_modules), -- cgit v1.2.1