aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2021-06-15 12:55:51 +0200
committerDmitry Vyukov <dvyukov@google.com>2021-06-15 14:38:15 +0200
commitb4f7a5d8faac53cf82d269258248044791fca58b (patch)
treec58f903c1b9feae3b949fa592db082852fa2f5d5
parentddfdbc1007ea05ccfb0a75b48acdd5bc28aec9f3 (diff)
sys/trusty/gen: add empty.go
It was missing and we forgot to import it in sys.
-rw-r--r--sys/sys.go1
-rw-r--r--sys/trusty/gen/empty.go6
2 files changed, 7 insertions, 0 deletions
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.