diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-05-27 17:29:36 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-05-27 15:38:45 +0000 |
| commit | 0cdd36fc443630fa8b6c5d7903cb7adc0baac5b5 (patch) | |
| tree | f5c27bbb4a809970d83cba87df5bf7638639763c /vm/starnix | |
| parent | 1f9b5e5c3aa41af3a1403e3933f20a2776eb5f4b (diff) | |
sys/targets: add consts for gvisor/starnix
Lint started warning about duplicate "gvisor" const in pkg/cover.
Add gvisor/starnix consts to sys/targets package to avoid duplication.
Diffstat (limited to 'vm/starnix')
| -rw-r--r-- | vm/starnix/starnix.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vm/starnix/starnix.go b/vm/starnix/starnix.go index 51f2f670f..61c893305 100644 --- a/vm/starnix/starnix.go +++ b/vm/starnix/starnix.go @@ -17,12 +17,13 @@ import ( "github.com/google/syzkaller/pkg/log" "github.com/google/syzkaller/pkg/osutil" "github.com/google/syzkaller/pkg/report" + "github.com/google/syzkaller/sys/targets" "github.com/google/syzkaller/vm/vmimpl" ) func init() { var _ vmimpl.Infoer = (*instance)(nil) - vmimpl.Register("starnix", ctor, true) + vmimpl.Register(targets.Starnix, ctor, true) } type Config struct { |
