|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-unstable] xend: NetBSD portability fix for LVM raw
# HG changeset patch
# User Roger Pau Monne <roger.pau@xxxxxxxxxxxxx>
# Date 1309265813 -3600
# Node ID 89ce3439686beba185db9ae41c36811c77615248
# Parent cb70cc05559181d90df623e8ba11c362a1de63db
xend: NetBSD portability fix for LVM raw volume names
Xen 4.1.1 was incorrectly passing /dev/rmapper/vg-lvname to pygrub
(notice the r in front of mapper), when it should pass
/dev/mapper/rvg-lvname (add the r to the last file) when using NetBSD.
I've patched it to work correctly. I'm attaching a unified diff with
the patch made against Xen 4.1.1 (it's a really simple modification).
From: Roger Pau Monne <roger.pau@xxxxxxxxxxxxx>
Signed-off-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>
Committed-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>
---
diff -r cb70cc055591 -r 89ce3439686b tools/python/xen/xend/XendBootloader.py
--- a/tools/python/xen/xend/XendBootloader.py Tue Jun 28 12:19:17 2011 +0100
+++ b/tools/python/xen/xend/XendBootloader.py Tue Jun 28 13:56:53 2011 +0100
@@ -44,7 +44,7 @@
raise VmError(msg)
if os.uname()[0] == "NetBSD" and disk.startswith('/dev/'):
- disk = disk.replace("/dev/", "/dev/r")
+ disk = "/r".join(disk.rsplit("/",1))
mkdir.parents("/var/run/xend/boot/", stat.S_IRWXU)
_______________________________________________
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] xend: NetBSD portability fix for LVM raw volume names,
Xen patchbot-unstable <=
|
|
|
|
|