Merge pull request #527 from jodh-intel/remove-initcall-debug-kernel-option

kernel: Remove initcall_debug boot option
This commit is contained in:
James O. D. Hunt 2018-08-01 12:50:52 +01:00 committed by GitHub
commit fc0142ec8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -86,7 +86,6 @@ var qemuMinorVersion int
// agnostic list of kernel parameters // agnostic list of kernel parameters
var defaultKernelParameters = []Param{ var defaultKernelParameters = []Param{
{"panic", "1"}, {"panic", "1"},
{"initcall_debug", ""},
} }
type operation int type operation int

View File

@ -52,7 +52,7 @@ func testQemuKernelParameters(t *testing.T, kernelParams []Param, expected strin
} }
func TestQemuKernelParameters(t *testing.T) { func TestQemuKernelParameters(t *testing.T) {
expectedOut := fmt.Sprintf("panic=1 initcall_debug nr_cpus=%d foo=foo bar=bar", MaxQemuVCPUs()) expectedOut := fmt.Sprintf("panic=1 nr_cpus=%d foo=foo bar=bar", MaxQemuVCPUs())
params := []Param{ params := []Param{
{ {
Key: "foo", Key: "foo",