diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-06-30 10:16:39 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-06-30 10:16:39 +0000 |
commit | 6356c58596d5560a3be94fdd458a9e25cde8eca5 (patch) | |
tree | 919e951f26c0ac2bc71ea9aaf53240dad4d6f287 /perl-install/standalone/bootloader-config | |
parent | 4ed0613c685bc3fa6aea3a7e6ce412e123f9ea76 (diff) | |
download | drakx-6356c58596d5560a3be94fdd458a9e25cde8eca5.tar drakx-6356c58596d5560a3be94fdd458a9e25cde8eca5.tar.gz drakx-6356c58596d5560a3be94fdd458a9e25cde8eca5.tar.bz2 drakx-6356c58596d5560a3be94fdd458a9e25cde8eca5.tar.xz drakx-6356c58596d5560a3be94fdd458a9e25cde8eca5.zip |
when doing update_splash or remove_splash, call when_config_changed (mainly for lilo)
Diffstat (limited to 'perl-install/standalone/bootloader-config')
-rwxr-xr-x | perl-install/standalone/bootloader-config | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/standalone/bootloader-config b/perl-install/standalone/bootloader-config index 40c40046d..5d48d0a68 100755 --- a/perl-install/standalone/bootloader-config +++ b/perl-install/standalone/bootloader-config @@ -108,12 +108,14 @@ sub update_splash() { foreach (@{$bootloader->{entries}}) { bootloader::make_boot_splash($_->{initrd}, $_->{vga}) if $_->{initrd}; } + bootloader::action($bootloader, 'when_config_changed', $hds) if !$no_launch; } sub remove_splash() { foreach (@{$bootloader->{entries}}) { bootloader::remove_boot_splash($_->{initrd}) if $_->{initrd}; } + bootloader::action($bootloader, 'when_config_changed', $hds) if !$no_launch; } sub detectloader() { |