[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST PATCH 3/9] Debian grub2: Correct a mistake in Xen entry parsing pattern
From: Robert Ho <robert.hu@xxxxxxxxx> In b77a6a2522d8 "Changes to support '/boot' leading paths of kernel, xen, in grub", this pattern was erroneously changed. Revert that aspect of that commit, so that we once again require Xen image versions to start with a digit. Signed-off-by: Robert Ho <robert.hu@xxxxxxxxx> Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- Osstest/Debian.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Osstest/Debian.pm b/Osstest/Debian.pm index 2b8d9f3..7677fa3 100644 --- a/Osstest/Debian.pm +++ b/Osstest/Debian.pm @@ -479,7 +479,7 @@ sub setupboot_grub2 ($$$$) { $entry->{Hv}= $1; $entry->{Chainload} = 1; } - if (m/^\s*multiboot\s*(?:\/boot)?\/(xen\S+)/) { + if (m/^\s*multiboot\s*(?:\/boot)?\/(xen\-[0-9][-+.0-9a-z]*\S+)/) { die unless $entry; $entry->{Hv}= $1; $entry->{Chainload} = 0; -- 1.7.10.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |