From dbce178a0e6997a799ba38247059dcb8213f4572 Mon Sep 17 00:00:00 2001 From: m00nbsd <42475391+m00nbsd@users.noreply.github.com> Date: Sat, 13 Jun 2020 12:10:16 +0200 Subject: sys/netbsd: support multiple vHCI buses (#1822) --- pkg/host/host_netbsd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/host') 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 "" -- cgit mrf-deployment