summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakboot
diff options
context:
space:
mode:
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');
+}