Merge pull request #1143 from alicefr/missing_root

s390x: root parameter is missing
This commit is contained in:
Frank Cao
2019-01-21 19:40:38 +08:00
committed by GitHub

View File

@@ -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,