summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2010-06-04 14:01:44 +0000
committerPascal Terjan <pterjan@mandriva.org>2010-06-04 14:01:44 +0000
commitafe80e65e4488eb70bc439704ea208454b07abb6 (patch)
treee4cd14e172178b9cdcee5afec4e4b5426d4ff64e
parent7f050ad26b811da9de3f8592285840439b719183 (diff)
downloaddrakx-afe80e65e4488eb70bc439704ea208454b07abb6.tar
drakx-afe80e65e4488eb70bc439704ea208454b07abb6.tar.gz
drakx-afe80e65e4488eb70bc439704ea208454b07abb6.tar.bz2
drakx-afe80e65e4488eb70bc439704ea208454b07abb6.tar.xz
drakx-afe80e65e4488eb70bc439704ea208454b07abb6.zip
fix loading of btrfs module
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/modules.pm1
3 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 447689959..30232777c 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -3,6 +3,7 @@ Version 13.33 - 4 June 2010
- lookup major:minor of devices outside $::prefix
- display lock icon for not enabled dmcrypt too
- disable dmcrypt before deleting partition, evin if inside lvm/raid
+- fix loading of btrfs module
Version 13.32 - 2 June 2010
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 4c7b13e0a..f6d673314 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -4,6 +4,7 @@ Version 13.33 - 4 June 2010
- display lock icon for not enabled dmcrypt too
- disable dmcrypt before deleting partition, evin if inside lvm/raid
- don't crash when starting stage2 with an RTL locale
+- fix loading of btrfs module
Version 13.32 - 2 June 2010
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 2439c758b..c17d52a30 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -94,6 +94,7 @@ sub load_with_options {
my @l = map {
if_(member($_, 'plip', @parallel_zip_modules), 'parport_pc'),
if_($_ eq 'vfat', 'nls_cp437', 'nls_iso8859_1'),
+ if_($_ eq 'btrfs', 'crc32c', 'crc32c-intel'),
dependencies_closure(cond_mapping_24_26($_));
} @$l;