diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-11 14:06:09 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-11 14:06:09 +0000 |
commit | 3281465142b1fe883b9403504c21d79f254a1fa7 (patch) | |
tree | f3997ee5782a8d69d385e193a0da176510d743bc | |
parent | 257fb7386825faa073cd68162f9dcd829780fa77 (diff) | |
download | drakx-3281465142b1fe883b9403504c21d79f254a1fa7.tar drakx-3281465142b1fe883b9403504c21d79f254a1fa7.tar.gz drakx-3281465142b1fe883b9403504c21d79f254a1fa7.tar.bz2 drakx-3281465142b1fe883b9403504c21d79f254a1fa7.tar.xz drakx-3281465142b1fe883b9403504c21d79f254a1fa7.zip |
add various/crypto category (support for hardware accelerated crypto)
-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'); |