diff options
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index bf5e7d6f1..867135dfb 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -767,7 +767,7 @@ sub readBootloaderConfigBeforeInstall { $v = "/boot/$v" if $v !~ m|^/|; if (-e "$o->{prefix}$v") { my $e = lilo::get("/boot/$image", $o->{bootloader}) or next; - $e->{kernel} = $v; + $e->{kernel_or_dev} = $v; log::l("renaming /boot/$image entry by $v"); } } |