|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH] pygrub: support grub2 "(hdX, msdosY)" partition synt
# HG changeset patch
# User Ian Campbell <ian.campbell@xxxxxxxxxx>
# Date 1286899422 -3600
# Node ID 372959917c012db7d90aad0626a4af6b8f9b186f
# Parent 2b9d32cb419d65622d213f501926c024dcfc306d
pygrub: support grub2 "(hdX,msdosY)" partition syntax
This appeared in Debian Squeeze at some point.
Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
diff -r 2b9d32cb419d -r 372959917c01 tools/pygrub/src/GrubConf.py
--- a/tools/pygrub/src/GrubConf.py Tue Oct 12 17:03:42 2010 +0100
+++ b/tools/pygrub/src/GrubConf.py Tue Oct 12 17:03:42 2010 +0100
@@ -77,6 +77,8 @@ class GrubDiskPart(object):
self._part = val
return
val = val.replace("(", "").replace(")", "")
+ if val[:5] == "msdos":
+ val = val[5:]
self._part = int(val)
part = property(get_part, set_part)
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|