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
commit d1cd82d0c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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,