diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-03-22 21:10:00 +0159 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-03-22 21:10:00 +0159 |
commit | e7e6db6f63a47a26412cf8b2ed1562d12f23a888 (patch) | |
tree | b5c130f4a63ac731ff5dcaaa1214d46ce7c1f786 | |
parent | d4f22d6a0e2e72b34d0ad29f67f777cb4d88078d (diff) | |
download | drakx-e7e6db6f63a47a26412cf8b2ed1562d12f23a888.tar drakx-e7e6db6f63a47a26412cf8b2ed1562d12f23a888.tar.gz drakx-e7e6db6f63a47a26412cf8b2ed1562d12f23a888.tar.bz2 drakx-e7e6db6f63a47a26412cf8b2ed1562d12f23a888.tar.xz drakx-e7e6db6f63a47a26412cf8b2ed1562d12f23a888.zip |
- bump max_nb() to 131 to cover mdadm managed imsm and ddf1 bios
fakeraids (containers defaults to >= 127 and partitions <=126)
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/raid.pm | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 8458c1e26..29d00259b 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- bump max_nb() to 131 to cover mdadm managed imsm and ddf1 bios + fakeraids (containers defaults to >= 127 and partitions <=126) + Version 16.70 - 21 March 2015 - better fix for the scrollbar in the package installation details diff --git a/perl-install/raid.pm b/perl-install/raid.pm index abcca2b79..ee7cbbc4d 100644 --- a/perl-install/raid.pm +++ b/perl-install/raid.pm @@ -23,7 +23,7 @@ Manage regular soft RAID (MD=Multiple Drive). =cut -sub max_nb() { 31 } +sub max_nb() { 131 } sub check_prog { # perl_checker: require interactive |