From: Anders Kaseorg Date: Sun, 3 May 2015 03:30:37 +0000 (-0400) Subject: Boot sysvms with the host’s latest installed kernel X-Git-Tag: 0.88~2 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/xvm-devconfig.git/commitdiff_plain/c93e7efc7a75cd646f12f207db6119c8f7ca6877 Boot sysvms with the host’s latest installed kernel Signed-off-by: Anders Kaseorg --- diff --git a/debian/changelog b/debian/changelog index 653a8ad..98286e8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +xvm-devconfig (0.87) precise; urgency=medium + + * Boot sysvms with the host’s latest installed kernel, not the host’s + currently running kernel. + + -- Anders Kaseorg Sat, 02 May 2015 23:29:54 -0400 + xvm-devconfig (0.86) precise; urgency=medium * Fix sysvms serial console configuration: xvc0 → hvc0. diff --git a/sysvms/s_console b/sysvms/s_console index 0faa2ca..9dae4c8 100644 --- a/sysvms/s_console +++ b/sysvms/s_console @@ -1,8 +1,8 @@ import os release = os.uname()[2] -kernel = '/boot/vmlinuz-%s' % release -ramdisk = '/boot/initrd.img-%s' % release +kernel = '/vmlinuz' +ramdisk = '/initrd.img' memory = '256' disk = ['phy:xenvg/s_console_xvda,xvda,w'] diff --git a/sysvms/s_master b/sysvms/s_master index 37b8c05..2794565 100644 --- a/sysvms/s_master +++ b/sysvms/s_master @@ -1,8 +1,8 @@ import os release = os.uname()[2] -kernel = '/boot/vmlinuz-%s' % release -ramdisk = '/boot/initrd.img-%s' % release +kernel = '/vmlinuz' +ramdisk = '/initrd.img' memory = '512' disk = ['phy:xenvg/s_master_xvda,xvda,w'] diff --git a/sysvms/s_remote b/sysvms/s_remote index 9c7cdab..dce4c56 100644 --- a/sysvms/s_remote +++ b/sysvms/s_remote @@ -1,8 +1,8 @@ import os release = os.uname()[2] -kernel = '/boot/vmlinuz-%s' % release -ramdisk = '/boot/initrd.img-%s' % release +kernel = '/vmlinuz' +ramdisk = '/initrd.img' memory = '512' disk = ['phy:xenvg/s_remote_xvda,xvda,w']