aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/host/features.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/host/features.go')
-rw-r--r--pkg/host/features.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/host/features.go b/pkg/host/features.go
index 800e3ea19..07f6487a8 100644
--- a/pkg/host/features.go
+++ b/pkg/host/features.go
@@ -27,6 +27,7 @@ const (
FeatureKCSAN
FeatureDevlinkPCI
FeatureUSBEmulation
+ FeatureVhciInjection
numFeatures
)
@@ -65,6 +66,7 @@ func Check(target *prog.Target) (*Features, error) {
FeatureKCSAN: {Name: "concurrency sanitizer", Reason: unsupported},
FeatureDevlinkPCI: {Name: "devlink PCI setup", Reason: unsupported},
FeatureUSBEmulation: {Name: "USB emulation", Reason: unsupported},
+ FeatureVhciInjection: {Name: "hci packet injection", Reason: unsupported},
}
if noHostChecks(target) {
return res, nil