diff options
author | 2016-06-15 19:39:33 +0000 | |
---|---|---|
committer | 2016-06-15 19:39:33 +0000 | |
commit | 2713118762f69421f9b09f685d75f8ab6ad165ba (patch) | |
tree | bda98ad59ad0eb524e5a244720999af724b4125c /sys/dev/usb/files.usb | |
parent | Fix typo from rebase : extra parenthese (diff) | |
download | wireguard-openbsd-2713118762f69421f9b09f685d75f8ab6ad165ba.tar.xz wireguard-openbsd-2713118762f69421f9b09f685d75f8ab6ad165ba.zip |
Add umb(4) - a driver for the Mobile Broadband Interface Model (MBIM)
The umb(4) driver provides support for USB MBIM devices.
Those devices establish connections via celluar networks such as
GPRS, UMTS, and LTE.
ok mpi@ sthen@
additional feedback from deraadt@ jmc@ stsp@ kettenis@
Diffstat (limited to 'sys/dev/usb/files.usb')
-rw-r--r-- | sys/dev/usb/files.usb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/usb/files.usb b/sys/dev/usb/files.usb index 4f8dc29506f..748ee955479 100644 --- a/sys/dev/usb/files.usb +++ b/sys/dev/usb/files.usb @@ -1,4 +1,4 @@ -# $OpenBSD: files.usb,v 1.127 2016/06/01 09:48:20 mglocker Exp $ +# $OpenBSD: files.usb,v 1.128 2016/06/15 19:39:34 gerhard Exp $ # $NetBSD: files.usb,v 1.16 2000/02/14 20:29:54 augustss Exp $ # # Config file and device description for machine-independent USB code. @@ -402,6 +402,11 @@ device otus: ether, ifnet, ifmedia, wlan, firmload attach otus at uhub file dev/usb/if_otus.c otus +# Mobile Broadband Interface Model +device umb: ifnet, ifmedia +attach umb at uhub +file dev/usb/if_umb.c umb + # USB logical device device usbf {} attach usbf at usbdev |