Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
s390x: root parameter is missing
Browse files Browse the repository at this point in the history
Fixes: #1140

Signed-off-by: Alice Frosi <afrosi@de.ibm.com>
  • Loading branch information
Alice Frosi committed Jan 17, 2019
1 parent 9b9ff2b commit f542233
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions virtcontainers/qemu_s390x.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit f542233

Please sign in to comment.