diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-29 10:33:56 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-29 10:33:56 +0000 |
commit | afa71376b0f4cf05924ea9035abd6768161652d5 (patch) | |
tree | d32d325497603a1cd0a69fe8a982976dfb0fc602 | |
parent | d90212b23c2a9787583f417c72dd9e4d87ef010d (diff) | |
download | drakx-afa71376b0f4cf05924ea9035abd6768161652d5.tar drakx-afa71376b0f4cf05924ea9035abd6768161652d5.tar.gz drakx-afa71376b0f4cf05924ea9035abd6768161652d5.tar.bz2 drakx-afa71376b0f4cf05924ea9035abd6768161652d5.tar.xz drakx-afa71376b0f4cf05924ea9035abd6768161652d5.zip |
no need to have devfs=nomount anymore in root raid
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 1db8de554..bc70fc3d8 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -152,7 +152,7 @@ sub doPartitionDisksAfter { # do not use devfs with root software raid foreach ($o->{bootloader}{perImageAppend}) { - $_ .= ' devfs=' . (isRAID(fsedit::get_root($o->{fstab})) ? 'nomount' : 'mount') if !/devfs=/; + $_ .= ' devfs=mount' if !/devfs=/; } if (arch() =~ /ppc/ && detect_devices::get_mac_generation =~ /NewWorld/) { |