All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Allow command-line editing in Lilo boot loader for IA64 platform
@ 2009-03-30 12:48 Michal Novotny
  0 siblings, 0 replies; only message in thread
From: Michal Novotny @ 2009-03-30 12:48 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: text/plain, Size: 533 bytes --]

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@redhat.com>

Best regards,
  Michal

[-- Attachment #2: xen-pygrub-allow-command-line-editing-for-lilo-ia64.patch --]
[-- Type: text/plain, Size: 708 bytes --]

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()

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-03-30 12:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-30 12:48 [PATCH] Allow command-line editing in Lilo boot loader for IA64 platform Michal Novotny

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.