From 98682e5e2aefc9aad61354f4f3ac93be96002a2a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 8 Feb 2021 08:47:37 +0100 Subject: sys/linux: add ieee802154 descriptions --- tools/syz-prog2c/prog2c.go | 1 + tools/syz-reprolist/reprolist.go | 3 +++ 2 files changed, 4 insertions(+) (limited to 'tools') diff --git a/tools/syz-prog2c/prog2c.go b/tools/syz-prog2c/prog2c.go index 680b5ce64..6c298d479 100644 --- a/tools/syz-prog2c/prog2c.go +++ b/tools/syz-prog2c/prog2c.go @@ -95,6 +95,7 @@ func main() { USB: features["usb"].Enabled, VhciInjection: features["vhci"].Enabled, Wifi: features["wifi"].Enabled, + IEEE802154: features["ieee802154"].Enabled, UseTmpDir: *flagUseTmpDir, HandleSegv: *flagHandleSegv, Repro: *flagRepro, diff --git a/tools/syz-reprolist/reprolist.go b/tools/syz-reprolist/reprolist.go index 585eea449..44dae95fe 100644 --- a/tools/syz-reprolist/reprolist.go +++ b/tools/syz-reprolist/reprolist.go @@ -239,6 +239,9 @@ func createProg2CArgs(bug *dashapi.BugReport, opts csource.Options, file string) enable = append(enable, "wifi") flags = append(flags, "-wifi") } + if opts.IEEE802154 { + enable = append(enable, "wifi") + } if !haveEnableFlag { args = append(args, flags...) } else if len(enable) != 0 { -- cgit mrf-deployment