diff options
author | 2017-08-28 19:31:57 +0000 | |
---|---|---|
committer | 2017-08-28 19:31:57 +0000 | |
commit | c51cbc7944b5f66cebc8043d07a5b1b466656549 (patch) | |
tree | 78df9510fedfa5019e0f624cfaed25580a482d87 /sys/dev/usb/files.usb | |
parent | tyop and whitespace nit (diff) | |
download | wireguard-openbsd-c51cbc7944b5f66cebc8043d07a5b1b466656549.tar.xz wireguard-openbsd-c51cbc7944b5f66cebc8043d07a5b1b466656549.zip |
Add urng(4) which supports various USB RNG devices. Instead of adding one
driver per device, start bundling them into a single driver.
urng(4) supports the device currently supported by ualea(4) and adds support for
the Altusmetrum ChaosKey 1.0, by abieber@
This was tested by abieber@ with a ChaosKey and Sean Levy with an Alea II
ok abieber@ deraadt@ naddy@
Diffstat (limited to 'sys/dev/usb/files.usb')
-rw-r--r-- | sys/dev/usb/files.usb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/usb/files.usb b/sys/dev/usb/files.usb index 850f519db76..e7ba97b850a 100644 --- a/sys/dev/usb/files.usb +++ b/sys/dev/usb/files.usb @@ -1,4 +1,4 @@ -# $OpenBSD: files.usb,v 1.131 2016/09/12 08:12:06 mpi Exp $ +# $OpenBSD: files.usb,v 1.132 2017/08/28 19:31:57 jasper 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. @@ -167,16 +167,16 @@ attach uoakv at uhidbus file dev/usb/uoakv.c uoakv # Misc -# Araneus Alea II TRNG -device ualea -attach ualea at uhub -file dev/usb/ualea.c ualea - # Moonbase Otago OneRNG TRNG device uonerng attach uonerng at uhub file dev/usb/uonerng.c uonerng +# USB Random Number Generator +device urng +attach urng at uhub +file dev/usb/urng.c + # Gude Expert mouseCLOCK DCF77 time signal station receiver device udcf attach udcf at uhub |