diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-11-29 12:00:13 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-11-30 13:33:18 +0100 |
| commit | 0f3a5454d62026ed8a7e9de75c82cf3861038349 (patch) | |
| tree | 34366bd74c5547d30d5b5b2f367d69f446934e14 /sys/targets | |
| parent | 1fd901159188a5e0c2b3559ae7ec7deff7c4e7a2 (diff) | |
pkg/mgrconfig: remove Syz prefix from fields
Everything in syzkaller is syz-something, it's pointless to add syz prefix
to everything and unnecessary increases clutter. Remove the prefix.
Also, rename ExecutorCmd in target to ExecutorBin to make it consistent
with mgrconfig and ExecprogBin/FuzzerBin.
Diffstat (limited to 'sys/targets')
| -rw-r--r-- | sys/targets/targets.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/targets/targets.go b/sys/targets/targets.go index ff218aa6c..2f6e0c090 100644 --- a/sys/targets/targets.go +++ b/sys/targets/targets.go @@ -67,7 +67,7 @@ type osCommon struct { // Some systems build syz-executor into their images. // If this flag is not empty, syz-executor will not be copied to the machine, and will be run using // this command instead. - SyzExecutorCmd string + ExecutorBin string // Extension of executable files (notably, .exe for windows). ExeExtension string // Name of the kernel object file. @@ -429,7 +429,7 @@ var oses = map[string]osCommon{ ExecutorUsesShmem: false, ExecutorUsesForkServer: false, HostFuzzer: true, - SyzExecutorCmd: "syz-executor", + ExecutorBin: "syz-executor", KernelObject: "zircon.elf", }, Windows: { |
