diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2009-04-02 10:25:12 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2009-04-02 10:25:12 +0000 |
commit | cfdc1f25ebfbb030f316ebf5aad360991e334783 (patch) | |
tree | 9ca3375b6a7e636b824aa41ac565409feb85ea4f /kernel | |
parent | aa6cd73c6cca5e3d07d82e3221f6f77a92478b73 (diff) | |
download | drakx-cfdc1f25ebfbb030f316ebf5aad360991e334783.tar drakx-cfdc1f25ebfbb030f316ebf5aad360991e334783.tar.gz drakx-cfdc1f25ebfbb030f316ebf5aad360991e334783.tar.bz2 drakx-cfdc1f25ebfbb030f316ebf5aad360991e334783.tar.xz drakx-cfdc1f25ebfbb030f316ebf5aad360991e334783.zip |
fix crypto module names when arch is not i586 (#46814)
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/list_modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/list_modules.pm b/kernel/list_modules.pm index 89dd560a3..56ea38b4f 100644 --- a/kernel/list_modules.pm +++ b/kernel/list_modules.pm @@ -266,7 +266,7 @@ our %l = ( qw(parport_pc parport_serial), qw(btaudio mmc_block), - 'cryptoloop', arch() =~ /i.86/ ? 'aes-i586' : 'aes', + 'cryptoloop', if_(arch() =~ /i.86/, 'aes-i586'), if_( arch() =~ /x86_64/, 'aes-x86_64'), 'aes_generic', if_(arch() =~ /sparc/, 'openprom'), qw(evdev), qw(usblp printer), 'floppy', |