From 421e1cbedb47cb499201512defc2baf79d7b87f7 Mon Sep 17 00:00:00 2001 From: Pimyn Girgis Date: Tue, 6 Aug 2024 14:10:45 +0000 Subject: pkg/mgrconfig, prog, tools: allow automatically generated or manually written descriptions or both Add "Auto" type and allow to choose descriptions mode in configurations. Defaults to using manual only. --- tools/syz-execprog/execprog.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/syz-execprog') diff --git a/tools/syz-execprog/execprog.go b/tools/syz-execprog/execprog.go index e86d09053..550b3c114 100644 --- a/tools/syz-execprog/execprog.go +++ b/tools/syz-execprog/execprog.go @@ -109,7 +109,7 @@ func main() { if *flagSyscalls == "" { syscallList = nil } - requestedSyscalls, err = mgrconfig.ParseEnabledSyscalls(target, syscallList, nil) + requestedSyscalls, err = mgrconfig.ParseEnabledSyscalls(target, syscallList, nil, mgrconfig.AnyDescriptions) if err != nil { tool.Failf("failed to parse enabled syscalls: %v", err) } -- cgit mrf-deployment