From 539e603206f427ff6549cde661fef0205a4c9034 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 15 Sep 2017 10:15:00 +0200 Subject: syz-manager, syz-fuzzer, executor: ensure that binaries are consistent Check that manager/fuzzer/executor are build on the same git revision, use the same syscall descriptions and the same target arch. Update #336 --- sys/linux/arm.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sys/linux/arm.go') diff --git a/sys/linux/arm.go b/sys/linux/arm.go index 3eb900c60..b364bdc71 100644 --- a/sys/linux/arm.go +++ b/sys/linux/arm.go @@ -4,7 +4,7 @@ package linux import . "github.com/google/syzkaller/prog" func init() { - initArch(syscalls_arm, resources_arm, structDescs_arm, consts_arm, "arm", 4) + initArch(revision_arm, syscalls_arm, resources_arm, structDescs_arm, consts_arm, "arm", 4) } var resources_arm = []*ResourceDesc{ @@ -17140,3 +17140,5 @@ var consts_arm = []ConstValue{ {Name: "__WCLONE", Value: 2147483648}, {Name: "__WNOTHREAD", Value: 536870912}, } + +const revision_arm = "f73cb445fdead3417b165eec037a0d892cc3253e" -- cgit mrf-deployment