summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/modules.pm1
1 files changed, 1 insertions, 0 deletions
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),