From c93e7efc7a75cd646f12f207db6119c8f7ca6877 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Sat, 2 May 2015 23:30:37 -0400 Subject: [PATCH] =?utf8?q?Boot=20sysvms=20with=20the=20host=E2=80=99s=20late?= =?utf8?q?st=20installed=20kernel?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Anders Kaseorg --- debian/changelog | 7 +++++++ sysvms/s_console | 4 ++-- sysvms/s_master | 4 ++-- sysvms/s_remote | 4 ++-- 4 files changed, 13 insertions(+), 6 deletions(-) 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'] -- 1.7.9.5