summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2009-04-02 10:25:12 +0000
committerPascal Terjan <pterjan@mandriva.org>2009-04-02 10:25:12 +0000
commitcfdc1f25ebfbb030f316ebf5aad360991e334783 (patch)
tree9ca3375b6a7e636b824aa41ac565409feb85ea4f
parentaa6cd73c6cca5e3d07d82e3221f6f77a92478b73 (diff)
downloaddrakx-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)
-rw-r--r--kernel/list_modules.pm2
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/devices.pm2
-rw-r--r--perl-install/fs/dmcrypt.pm2
-rw-r--r--perl-install/install/NEWS2
5 files changed, 6 insertions, 3 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',
diff --git a/perl-install/NEWS b/perl-install/NEWS
index eea654149..9bee6f7d0 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,4 @@
+- fixed crypto module names when arch is not i586 (#46814)
- drakauth:
o handling winbind configuration when REALM != DNS (#49189)
diff --git a/perl-install/devices.pm b/perl-install/devices.pm
index 09606f7ca..0423e3598 100644
--- a/perl-install/devices.pm
+++ b/perl-install/devices.pm
@@ -28,7 +28,7 @@ sub set_loop {
my $dev = find_free_loop();
if ($o_encrypt_key && $o_encryption) {
- eval { modules::load('cryptoloop', 'cbc', arch() =~ /i.86/ ? 'aes-i586' : 'aes') };
+ eval { modules::load('cryptoloop', 'cbc', if_(arch() =~ /i.86/, 'aes-i586'), if_( arch() =~ /x86_64/, 'aes-x86_64'), 'aes_generic') };
my $cmd = "losetup -p 0 -e $o_encryption $dev $file";
log::l("calling $cmd");
open(my $F, "|$cmd");
diff --git a/perl-install/fs/dmcrypt.pm b/perl-install/fs/dmcrypt.pm
index b17a18eea..fccc9bf0a 100644
--- a/perl-install/fs/dmcrypt.pm
+++ b/perl-install/fs/dmcrypt.pm
@@ -16,7 +16,7 @@ sub _crypttab() { "$::prefix/etc/crypttab" }
sub init() {
whereis_binary('cryptsetup') or die "cryptsetup not installed";
- eval { modules::load('dm-crypt', 'cbc', 'sha256_generic', arch() =~ /i.86/ ? 'aes-i586' : 'aes') };
+ eval { modules::load('dm-crypt', 'cbc', 'sha256_generic', if_(arch() =~ /i.86/, 'aes-i586'), if_( arch() =~ /x86_64/, 'aes-x86_64'), 'aes_generic') };
devices::init_device_mapper();
1;
}
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 9e05cda32..f7753cac1 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- fix crypto module names when arch is not i586 (#46814)
+
Version 12.22 - 31 March 2009
- don't list installed distros with other archs as upgrading between