aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/bisect
diff options
context:
space:
mode:
authorJukka Kaartinen <jukka.kaartinen@unikie.com>2020-04-08 16:44:45 +0300
committerDmitry Vyukov <dvyukov@google.com>2020-07-02 09:32:57 +0200
commitd42301aa2fcaa64823b3ece21f2a9c83335471f5 (patch)
treefb66e5c16d1e2155f369c87c4df324f95eacab50 /pkg/bisect
parentbed103955b496d2edb4bb6ed2ab6396ed9cbb9a1 (diff)
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 <jukka.kaartinen@unikie.com> Signed-off-by: Jouni Hogander <jouni.hogander@unikie.com>
Diffstat (limited to 'pkg/bisect')
-rw-r--r--pkg/bisect/bisect.go15
1 files changed, 8 insertions, 7 deletions
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 {