[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] Allow command-line editing in Lilo boot loader for IA64 platform
Hi folks,this is pygrub patch to allow command-line editing in (e)Lilo boot loader used as a default boot loader for IA64. There was an error when creating domain using `xm create -c somePVguest` and pressing 'e' (for editing boot line) and then booting it using 'b' option. It returned an exception on IA64 platform because reset() function has one more parameter for Lilo bootloader used by IA64 than for GRUB bootloader used for other platforms. Signed-off-by: Michal Novotny <minovotn@xxxxxxxxxx> Best regards, Michal diff -up xen-3.1.0-src/tools/pygrub/src/pygrub.bz249791 xen-3.1.0-src/tools/pygrub/src/pygrub --- xen-3.1.0-src/tools/pygrub/src/pygrub.bz249791 2009-02-23 16:37:11.000000000 +0100 +++ xen-3.1.0-src/tools/pygrub/src/pygrub 2009-03-30 14:27:28.000000000 +0200 @@ -314,7 +314,11 @@ class Grub: curline = len(img.lines) - 1 if self.isdone: - origimg.reset(img.lines) + # Fix to allow pygrub command-line editing in Lilo bootloader (used by IA64) + if platform.machine() == 'ia64': + origimg.reset(img.lines, img.path) + else: + origimg.reset(img.lines) def edit_line(self, line): self.screen.clear() _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |