From b4f7a5d8faac53cf82d269258248044791fca58b Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 15 Jun 2021 12:55:51 +0200 Subject: sys/trusty/gen: add empty.go It was missing and we forgot to import it in sys. --- sys/sys.go | 1 + sys/trusty/gen/empty.go | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 sys/trusty/gen/empty.go (limited to 'sys') diff --git a/sys/sys.go b/sys/sys.go index b0ae67839..9400df2f8 100644 --- a/sys/sys.go +++ b/sys/sys.go @@ -13,5 +13,6 @@ import ( _ "github.com/google/syzkaller/sys/netbsd/gen" _ "github.com/google/syzkaller/sys/openbsd/gen" _ "github.com/google/syzkaller/sys/test/gen" + _ "github.com/google/syzkaller/sys/trusty/gen" _ "github.com/google/syzkaller/sys/windows/gen" ) diff --git a/sys/trusty/gen/empty.go b/sys/trusty/gen/empty.go new file mode 100644 index 000000000..7884be456 --- /dev/null +++ b/sys/trusty/gen/empty.go @@ -0,0 +1,6 @@ +// Copyright 2021 syzkaller project authors. All rights reserved. +// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +package gen + +// Empty file to unbreak build while descriptions are not generated. -- cgit mrf-deployment