diff options
author | 2019-05-09 00:20:57 +0000 | |
---|---|---|
committer | 2019-05-09 00:20:57 +0000 | |
commit | 037672b612e6d284d68682858dce50532b4a02c5 (patch) | |
tree | b8014d65ff4d3f484e255d4a3a4d27f2d580e47c | |
parent | convert system() calls to an execv() like interface. (diff) | |
download | wireguard-openbsd-037672b612e6d284d68682858dce50532b4a02c5.tar.xz wireguard-openbsd-037672b612e6d284d68682858dce50532b4a02c5.zip |
Add ucrcom(4) a (very simple) driver for the serial console of (some)
chromebooks.
ok deraadt@
-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 28876426b08..1036cf36232 100644 --- a/sys/dev/usb/files.usb +++ b/sys/dev/usb/files.usb @@ -1,4 +1,4 @@ -# $OpenBSD: files.usb,v 1.137 2019/03/27 22:08:51 kettenis Exp $ +# $OpenBSD: files.usb,v 1.138 2019/05/09 00:20:57 kettenis 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. @@ -342,6 +342,11 @@ device uscom: ucombus attach uscom at uhub file dev/usb/uscom.c uscom +# Chromebook serial +device ucrcom: ucombus +attach ucrcom at uhub +file dev/usb/ucrcom.c ucrcom + # Exar XR21V1410 device uxrcom: ucombus attach uxrcom at uhub |