diff options
-rw-r--r-- | perl-install/install_steps.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 3975d676b..9de250ba8 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -872,7 +872,8 @@ sub miscellaneous { local $_ = $o->{bootloader}{perImageAppend}; - $_ .= ' devfs=mount' if !/devfs=/; + # do not use devfs with root software raid + $_ .= ' devfs=' . (isRAID(fsedit::get_root($o->{fstab})) ? 'mount' : 'nomount') if !/devfs=/; if ($o->{lnx4win} and !/mem=/) { $_ .= ' mem=' . availableRamMB() . 'M'; |