summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakboot
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-03-05 11:37:56 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-03-05 11:37:56 +0000
commit314fa0df12e087fd9c6bb039db4e19f24dc3cbd5 (patch)
tree49e7174143f57871955cc6a46b26fa9caaf1a5ef /perl-install/standalone/drakboot
parent04571a4cb0717dcf469d68a8d5e2f9587b42ce52 (diff)
downloaddrakx-backup-do-not-use-314fa0df12e087fd9c6bb039db4e19f24dc3cbd5.tar
drakx-backup-do-not-use-314fa0df12e087fd9c6bb039db4e19f24dc3cbd5.tar.gz
drakx-backup-do-not-use-314fa0df12e087fd9c6bb039db4e19f24dc3cbd5.tar.bz2
drakx-backup-do-not-use-314fa0df12e087fd9c6bb039db4e19f24dc3cbd5.tar.xz
drakx-backup-do-not-use-314fa0df12e087fd9c6bb039db4e19f24dc3cbd5.zip
- draksplash: do not re-install grub, only modify grub's config file
(it may help for bug #37203)
Diffstat (limited to 'perl-install/standalone/drakboot')
-rwxr-xr-xperl-install/standalone/drakboot10
1 files changed, 8 insertions, 2 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot
index 08ce80345..d0a8ef826 100755
--- a/perl-install/standalone/drakboot
+++ b/perl-install/standalone/drakboot
@@ -242,7 +242,7 @@ sub set_splash_append {
my ($val) = @_;
bootloader::set_append_with_key($bootloader, 'splash', undef);
bootloader::set_append_with_key($bootloader, 'splash', $val);
- bootloader::install($bootloader, $all_hds);
+ modify_bootloader($bootloader, $all_hds);
}
sub enable_framebuffer() {
@@ -275,10 +275,16 @@ Be sure your video card supports the mode you choose."),
my $entry = find { $_->{label} eq $label } @{$bootloader->{entries}};
$entry->{vga} = $vga;
}
- bootloader::install($bootloader, $all_hds);
+ modify_bootloader($bootloader, $all_hds);
}
};
die if $@ && $@ !~ /^wizcancel/;
$::WizardWindow->destroy unless $::isEmbedded;
$vga;
}
+
+sub modify_bootloader {
+ my ($bootloader, $all_hds) = @_;
+ bootloader::action($bootloader, 'write', $all_hds);
+ bootloader::action($bootloader, 'when_config_changed');
+}