|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-unstable] ia64, pygrub: Allow command-line editing
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1238502096 -3600
# Node ID 4b602fff137b8c9ccd23e17c3df6423341e7757d
# Parent b2b0825d6f8ef337559e1fab88b68cfa215b7bd0
ia64, pygrub: Allow command-line editing in Lilo boot loader
On IA64 platform 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>
---
tools/pygrub/src/pygrub | 6 +++++-
1 files changed, 5 insertions(+), 1 deletion(-)
diff -r b2b0825d6f8e -r 4b602fff137b tools/pygrub/src/pygrub
--- a/tools/pygrub/src/pygrub Tue Mar 31 13:20:04 2009 +0100
+++ b/tools/pygrub/src/pygrub Tue Mar 31 13:21:36 2009 +0100
@@ -316,7 +316,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.erase()
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-unstable] ia64, pygrub: Allow command-line editing in Lilo boot loader,
Xen patchbot-unstable <=
|
|
|
|
|