diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-09-09 07:42:24 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-09-09 07:42:24 +0000 |
commit | 450b801b2eb30b170e334b2151d8843f7a79fcfc (patch) | |
tree | f22b8e70a04188e3a2f2a616ddf5283e213da6a8 | |
parent | 0f4cca62af7839e49475db05a5b51a4287cade38 (diff) | |
download | drakx-450b801b2eb30b170e334b2151d8843f7a79fcfc.tar drakx-450b801b2eb30b170e334b2151d8843f7a79fcfc.tar.gz drakx-450b801b2eb30b170e334b2151d8843f7a79fcfc.tar.bz2 drakx-450b801b2eb30b170e334b2151d8843f7a79fcfc.tar.xz drakx-450b801b2eb30b170e334b2151d8843f7a79fcfc.zip |
handle raid-extra-boot (bugzilla #11350)
-rw-r--r-- | perl-install/bootloader.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 86f3b1896..06a4a1d83 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -992,7 +992,7 @@ sub write_lilo { push @conf, "# File generated by DrakX/drakboot"; push @conf, "# WARNING: do not forget to run lilo after modifying this file\n"; push @conf, "default=" . make_label_lilo_compatible($bootloader->{default}) if $bootloader->{default}; - push @conf, map { "$_=$bootloader->{$_}" } grep { $bootloader->{$_} } qw(boot map install vga keytable); + push @conf, map { "$_=$bootloader->{$_}" } grep { $bootloader->{$_} } qw(boot map install vga keytable raid-extra-boot); push @conf, grep { $bootloader->{$_} } qw(linear geometric compact prompt nowarn restricted static-bios-codes); push @conf, qq(append="$bootloader->{append}") if $bootloader->{append}; push @conf, "password=" . $bootloader->{password} if $bootloader->{password}; #- also done by msec |