summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-12-10 13:57:53 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-12-10 13:57:53 +0000
commit62f00af9af47d131a0f9b7040dfee59816fa95b5 (patch)
tree2be6a2efaf5c8fd3fa6223aa83c4916d946e64af /perl-install/install_steps.pm
parent88470ddf129d2c8f193e3450a100503a121a944d (diff)
downloaddrakx-backup-do-not-use-62f00af9af47d131a0f9b7040dfee59816fa95b5.tar
drakx-backup-do-not-use-62f00af9af47d131a0f9b7040dfee59816fa95b5.tar.gz
drakx-backup-do-not-use-62f00af9af47d131a0f9b7040dfee59816fa95b5.tar.bz2
drakx-backup-do-not-use-62f00af9af47d131a0f9b7040dfee59816fa95b5.tar.xz
drakx-backup-do-not-use-62f00af9af47d131a0f9b7040dfee59816fa95b5.zip
- fix bootloader::add_append
- add handling of serial console
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm6
1 files changed, 2 insertions, 4 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index d58ed7f44..ac7f33e98 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -152,10 +152,8 @@ sub doPartitionDisksAfter {
$o->{fstab} = [ fsedit::get_all_fstab($o->{all_hds}) ];
fsedit::get_root_($o->{fstab}) or die "Oops, no root partition";
- # do not use devfs with root software raid
- foreach ($o->{bootloader}{perImageAppend}) {
- $_ .= ' devfs=mount' if !/devfs=/;
- }
+ require bootloader;
+ bootloader::may_append($o->{bootloader}, devfs => 'mount');
if (arch() =~ /ppc/ && detect_devices::get_mac_generation =~ /NewWorld/) {
die "Need bootstrap partition to boot system!" if !(defined $partition_table_mac::bootstrap_part);