# HG changeset patch # User Michael Young # Date 1319566759 -3600 # Node ID 65679fee01778aec2dbe9988959da6b57c52d6c9 # Parent 138f707fa598340749a70a79748b01dff850b8f2 pygrub: Allow GPT partition references The grub2 configuration file in Fedora 16 can have GPT partition references like (hd0,gpt2) so remove the "gpt" string where necessary Signed-off-by: Michael Young Acked-by: Ian Campbell Index: xen-4.1.2-testing/tools/pygrub/src/GrubConf.py =================================================================== --- xen-4.1.2-testing.orig/tools/pygrub/src/GrubConf.py +++ xen-4.1.2-testing/tools/pygrub/src/GrubConf.py @@ -79,6 +79,8 @@ class GrubDiskPart(object): val = val.replace("(", "").replace(")", "") if val[:5] == "msdos": val = val[5:] + if val[:3] == "gpt": + val = val[3:] self._part = int(val) part = property(get_part, set_part)