diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-09-05 12:07:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-09-05 12:07:44 +0000 |
commit | 25365fea641e9e5bcec2372695c9438d099b78eb (patch) | |
tree | 245722baac92b6fa9b04ec663408d7b00ea44694 /perl-install/bootloader.pm | |
parent | 923889728b1fbc379cd598191c0548690824b146 (diff) | |
download | drakx-backup-do-not-use-25365fea641e9e5bcec2372695c9438d099b78eb.tar drakx-backup-do-not-use-25365fea641e9e5bcec2372695c9438d099b78eb.tar.gz drakx-backup-do-not-use-25365fea641e9e5bcec2372695c9438d099b78eb.tar.bz2 drakx-backup-do-not-use-25365fea641e9e5bcec2372695c9438d099b78eb.tar.xz drakx-backup-do-not-use-25365fea641e9e5bcec2372695c9438d099b78eb.zip |
no_comment
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index c5b570620..5b99a022c 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -312,6 +312,7 @@ wait %d seconds for default boot. kernel_or_dev => "/dev/$_->{device}", label => isDos($_) ? "dos" . ($dos++ ? $dos : '') : "windows" . ($win++ ? $win : '') , table => "/dev/$_->{rootDevice}", + unsafe => 1 }) if isFat($_) && isFat({ type => fsedit::typeOfPart($_->{device}) }); } } @@ -550,6 +551,8 @@ sub install_grub { print F "color black/cyan yellow/cyan"; print F "i18n ", $file2grub->("/boot/grub/messages"); print F "keytable ", $file2grub->($lilo->{keytable}) if $lilo->{keytable}; + print F "altconfigfile ", $file2grub->(my $once = "/boot/grub/menu.once"); + output "$prefix$once", " " x 100; map_index { print F "default $::i" if $_->{label} eq $lilo->{default}; |