From 0f3a5454d62026ed8a7e9de75c82cf3861038349 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 29 Nov 2020 12:00:13 +0100 Subject: 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. --- sys/targets/targets.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys') 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: { -- cgit mrf-deployment