diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-04-13 22:48:53 +0259 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-04-13 22:48:53 +0259 |
commit | 1dac07175aa4e85cf917c50d69f62d59452d19d3 (patch) | |
tree | e5d2eb77e916fae51ff95a1e783a6e332dbaddad | |
parent | a784151afc4af44994ff55053d3060ef4cb19e35 (diff) | |
download | drakx-1dac07175aa4e85cf917c50d69f62d59452d19d3.tar drakx-1dac07175aa4e85cf917c50d69f62d59452d19d3.tar.gz drakx-1dac07175aa4e85cf917c50d69f62d59452d19d3.tar.bz2 drakx-1dac07175aa4e85cf917c50d69f62d59452d19d3.tar.xz drakx-1dac07175aa4e85cf917c50d69f62d59452d19d3.zip |
- enable firmware raids with dmraid/kpartx like we do on
live medias and on fully installed systems
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/fs/dmraid.pm | 7 |
2 files changed, 9 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 7720471a0..76eeb0fd0 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- enable firmware raids with dmraid/kpartx like we do on + live medias and on fully installed systems + Version 16.82 - 13 April 2015 - diskdrake: diff --git a/perl-install/fs/dmraid.pm b/perl-install/fs/dmraid.pm index 996dbbc14..7a279abc7 100644 --- a/perl-install/fs/dmraid.pm +++ b/perl-install/fs/dmraid.pm @@ -34,7 +34,12 @@ sub init() { eval { modules::load('dm-mirror', 'dm-zero') }; devices::init_device_mapper(); if ($::isInstall) { - call_dmraid('-ay'); + foreach my $name (call_dmraid('-s', '-c', '-i')) { + chomp($name); + log::l("got: $name"); + call_dmraid('-ay', '-i', '--rm_partitions', '-p', $name); + run_program::run('/sbin/kpartx', '-u', '-a', '/dev/mapper/' . $name); + } } 1; } |