diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2020-12-29 12:28:24 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2020-12-29 12:28:24 +0000 |
commit | 55768bd017443504ac7a7743c0dc9b640c9e00a8 (patch) | |
tree | 9b7490a07256f6d8278adac657205b7a02b5066a /share | |
parent | 78c615e4378f7b140e168f8fdcecf9d87210d1d5 (diff) |
Document kern.video.record.
With help/input from jmc@ and kn@.
ok jmc@
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man4/video.4 | 17 | ||||
-rw-r--r-- | share/man/man8/afterboot.8 | 18 |
2 files changed, 26 insertions, 9 deletions
diff --git a/share/man/man4/video.4 b/share/man/man4/video.4 index c5100051b2f..4b3f2f04480 100644 --- a/share/man/man4/video.4 +++ b/share/man/man4/video.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: video.4,v 1.18 2020/07/31 18:17:17 mglocker Exp $ +.\" $OpenBSD: video.4,v 1.19 2020/12/29 12:28:23 mglocker Exp $ .\" .\" Copyright (c) 2008 Marcus Glocker <mglocker@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: July 31 2020 $ +.Dd $Mdocdate: December 29 2020 $ .Dt VIDEO 4 .Os .Sh NAME @@ -40,6 +40,19 @@ Therefore this document mainly describes the V4L2 API parts which are supported by the .Nm driver. +.Pp +For security reasons video recording is blanked by default. +To achieve this, the +.Nm +driver blanks image data received from the underlying video hardware driver. +The superuser can change this behavior using the +.Va kern.video.record +.Xr sysctl 2 +variable: +.Bd -literal -offset indent +kern.video.record=0 # Recording is blanked (default) +kern.video.record=1 # Recording is enabled +.Ed .Sh IOCTLS The following .Xr ioctl 2 diff --git a/share/man/man8/afterboot.8 b/share/man/man8/afterboot.8 index 248e57b53bb..8b4079f857d 100644 --- a/share/man/man8/afterboot.8 +++ b/share/man/man8/afterboot.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: afterboot.8,v 1.167 2020/10/23 20:37:45 jmc Exp $ +.\" $OpenBSD: afterboot.8,v 1.168 2020/12/29 12:28:23 mglocker Exp $ .\" .\" Copyright (c) 1997 Marshall M. Midden .\" All rights reserved. @@ -29,7 +29,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: October 23 2020 $ +.Dd $Mdocdate: December 29 2020 $ .Dt AFTERBOOT 8 .\" Originally created by Marshall M. Midden -- 1997-10-20, m4@umn.edu .Os @@ -406,14 +406,18 @@ Consult and .Xr printcap 5 if needed. -.Ss Audio recording +.Ss Audio and video recording The .Xr audio 4 -driver by default records only silence. -Normal audio recording can be enabled by adding the following directive to +and +.Xr video 4 +drivers by default record only silence and blanked images. +Normal recording can be enabled by adding the following directives to .Xr sysctl.conf 5 : -.Pp -.Dl kern.audio.record=1 +.Bd -literal -offset indent +kern.audio.record=1 +kern.video.record=1 +.Ed .Ss Mail aliases Edit .Pa /etc/mail/aliases |