From f542233cbd837bdb68661c420177d1394857e411 Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Thu, 17 Jan 2019 15:09:18 +0100 Subject: [PATCH] s390x: root parameter is missing Fixes: #1140 Signed-off-by: Alice Frosi --- virtcontainers/qemu_s390x.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/virtcontainers/qemu_s390x.go b/virtcontainers/qemu_s390x.go index cd87d681e6..6e9c6ff87f 100644 --- a/virtcontainers/qemu_s390x.go +++ b/virtcontainers/qemu_s390x.go @@ -30,13 +30,15 @@ var qemuPaths = map[string]string{ QemuCCWVirtio: defaultQemuPath, } -var kernelRootParams = []Param{} - // Verify needed parameters var kernelParams = []Param{ {"console", "ttysclp0"}, } +var kernelRootParams = []Param{ + {"root", "/dev/vda1"}, +} + var supportedQemuMachines = []govmmQemu.Machine{ { Type: QemuCCWVirtio,