aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/host
diff options
context:
space:
mode:
authorm00nbsd <42475391+m00nbsd@users.noreply.github.com>2020-06-13 12:10:16 +0200
committerGitHub <noreply@github.com>2020-06-13 12:10:16 +0200
commitdbce178a0e6997a799ba38247059dcb8213f4572 (patch)
tree44c8bf22f223f1a9f2d3f37012fdbf0d9bb0a624 /pkg/host
parent205b2ba41849749529bce61d21862f8c86ed12a4 (diff)
sys/netbsd: support multiple vHCI buses (#1822)
Diffstat (limited to 'pkg/host')
-rw-r--r--pkg/host/host_netbsd.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/host/host_netbsd.go b/pkg/host/host_netbsd.go
index dffdec5d7..aa0a6e88a 100644
--- a/pkg/host/host_netbsd.go
+++ b/pkg/host/host_netbsd.go
@@ -27,7 +27,7 @@ func init() {
}
func checkUSBEmulation() string {
- if err := osutil.IsAccessible("/dev/vhci"); err != nil {
+ if err := osutil.IsAccessible("/dev/vhci0"); err != nil {
return err.Error()
}
return ""