From d42301aa2fcaa64823b3ece21f2a9c83335471f5 Mon Sep 17 00:00:00 2001 From: Jukka Kaartinen Date: Wed, 8 Apr 2020 16:44:45 +0300 Subject: Pass baseline config around Add new new Syzkaller configuration option kernel_baseline_config. This option is supposed to be used by kernel configruation bisection as a "good" config" Signed-off-by: Jukka Kaartinen Signed-off-by: Jouni Hogander --- pkg/bisect/bisect.go | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'pkg/bisect') diff --git a/pkg/bisect/bisect.go b/pkg/bisect/bisect.go index 1ea8a9738..fb11e5753 100644 --- a/pkg/bisect/bisect.go +++ b/pkg/bisect/bisect.go @@ -29,13 +29,14 @@ type Config struct { } type KernelConfig struct { - Repo string - Branch string - Commit string - Cmdline string - Sysctl string - Config []byte - Userspace string + Repo string + Branch string + Commit string + Cmdline string + Sysctl string + Config []byte + BaselineConfig []byte + Userspace string } type SyzkallerConfig struct { -- cgit mrf-deployment