From a9c6810b47d7cc45e1edfd84a22333c508416331 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 28 Jan 2008 09:36:14 +0000 Subject: - bootloader-config: o do not drop "lock" in chainload entries from grub's menu.lst --- perl-install/NEWS | 3 +++ perl-install/bootloader.pm | 1 + 2 files changed, 4 insertions(+) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index c745afe85..7d4d48563 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- bootloader-config: + o do not drop "lock" in chainload entries from grub's menu.lst + Version 10.6.9 - 25 January 2008 - harddrake: diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index f8b304651..d7435cd7e 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -1634,6 +1634,7 @@ sub write_grub { next; } push @conf, $title; + push @conf, grep { $entry->{$_} } 'lock'; push @conf, join(' ', $entry->{rootnoverify} ? 'rootnoverify' : 'root', $dev); if ($entry->{table}) { -- cgit v1.2.1