diff options
-rw-r--r-- | kernel/list_modules.pm | 5 | ||||
-rw-r--r-- | perl-install/modules.pm | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/kernel/list_modules.pm b/kernel/list_modules.pm index bab6b00ed..4fb3aa567 100644 --- a/kernel/list_modules.pm +++ b/kernel/list_modules.pm @@ -196,9 +196,12 @@ our %l = ( ], char => [ if_(arch() =~ /ia64/, qw(efivars)), - qw(hw_random applicom n_r3964 nvram pc110pad ppdev), + qw(applicom n_r3964 nvram pc110pad ppdev), qw(wdt_pci i810-tco sx), #- what are these??? ], + crypto => [ + qw(amd768_rng amd7xx_tco i810_rng hw_random padlock), + ], laptop => [ qw(i8k sonypi toshiba), ], diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 6207e47df..3a16b62e6 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -183,6 +183,7 @@ sub write_preload_conf { push @l, 'nvram' if cat_('/proc/bus/input/devices') =~ m!^N: Name="SynPS/2 Synaptics TouchPad"$!m; push @l, map { $_->{driver} } probe_category('various/laptop'); push @l, map { $_->{driver} } probe_category('multimedia/joystick'); + push @l, map { $_->{driver} } probe_category('various/crypto'); push @l, 'padlock' if cat_("/proc/cpuinfo") =~ /rng_en/; my @l_26 = @l; push @l_26, map { $_->{driver} } probe_category('various/agpgart'); |