diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-02 11:02:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-02 11:02:37 +0000 |
commit | 1e00a64aa7daacaa865af9af6d4c16d60600e381 (patch) | |
tree | fa9e92b7a6fc45fbef87458991922ebc10e1418b | |
parent | 1b89f1eff5eb5170c423f7b54f333be7aa429c62 (diff) | |
download | drakx-1e00a64aa7daacaa865af9af6d4c16d60600e381.tar drakx-1e00a64aa7daacaa865af9af6d4c16d60600e381.tar.gz drakx-1e00a64aa7daacaa865af9af6d4c16d60600e381.tar.bz2 drakx-1e00a64aa7daacaa865af9af6d4c16d60600e381.tar.xz drakx-1e00a64aa7daacaa865af9af6d4c16d60600e381.zip |
grub altconfigfile is kind of broken
-rw-r--r-- | perl-install/bootloader.pm | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 816e31a4a..aee385ea1 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -1101,12 +1101,6 @@ sub write_grub_config { print F "keytable ", $file2grub->($bootloader->{keytable}) if $bootloader->{keytable}; print F "serial --unit=$1 --speed=$2\nterminal --timeout=" . ($bootloader->{timeout} || 0) . " console serial" if get_append($bootloader, 'console') =~ /ttyS(\d),(\d+)/; - #- since we use notail in reiserfs, altconfigfile is broken :-( - unless ($bootIsReiser) { - print F "altconfigfile ", $file2grub->(my $once = "/boot/grub/menu.once"); - output "$::prefix$once", " " x 100; - } - each_index { print F "default $::i" if $_->{label} eq $bootloader->{default}; } @{$bootloader->{entries}}; |