From 54643229cb7453f41e082a12d1ea927432437b57 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 5 Apr 2013 11:33:53 +0000 Subject: read back xen conf from grub2 --- perl-install/NEWS | 2 ++ perl-install/bootloader.pm | 4 ++-- perl-install/install/NEWS | 2 ++ 3 files changed, 6 insertions(+), 2 deletions(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index 5c29a2dfc..1bdcee2ee 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- drakboot: + o read back xen conf from grub2 - draksound o update draksound troubleshooting text (mga#4162) diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 360f20c0f..b1d48cd65 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -244,9 +244,9 @@ sub read_grub2 { if (/menuentry\s+['"]([^']+)["']/) { push @{$bootloader{entries}}, $entry if $entry; $entry = { label => $1 }; - } elsif (/linux\s+(\S+)\s+(.*)?/) { + } elsif (/linux\s+(\S+)\s+(.*)?/ || /module\s+(\S+vmlinu\S+)\s+(.*)?/) { @$entry{qw(kernel_or_dev append)} = ($1, $2); - } elsif (/initrd\s+(\S+)/) { + } elsif (/initrd\s+(\S+)/ || /module\s+(\S+initrd\S+)\s+(.*)?/) { $entry->{initrd} = $1; } } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index d857ad5b1..97b202310 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- drakboot: + o read back xen conf from grub2 - fix finding translated help (mga#9619) Version 15.34 - 4 April 2013 -- cgit v1.2.1