chown the first drm render node in addition to the primary drm device

ok matthieu@
This commit is contained in:
jsg 2019-05-12 11:53:06 +00:00
parent c46a751926
commit f8d726d75d
2 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
# Assign ownership of the console to the invoking user
# $OpenBSD: GiveConsole,v 1.2 2018/07/11 19:20:40 matthieu Exp $
# $OpenBSD: GiveConsole,v 1.3 2019/05/12 11:53:06 jsg Exp $
#
# By convention, both xconsole and xterm -C check that the
# console is owned by the invoking user and is readable before attaching
@ -11,4 +11,7 @@ chown $USER /dev/console
if [ -c /dev/drm0 ]; then
chown $USER /dev/drm0
fi
if [ -c /dev/drmR128 ]; then
chown $USER /dev/drmR128
fi
/usr/X11R6/bin/sessreg -a -l $DISPLAY -u none $USER

View File

@ -1,11 +1,14 @@
#!/bin/sh
# Reassign ownership of the console to root, this should disallow
# assignment of console output to any random users's xterm
# $OpenBSD: TakeConsole,v 1.3 2018/07/11 19:20:40 matthieu Exp $
# $OpenBSD: TakeConsole,v 1.4 2019/05/12 11:53:06 jsg Exp $
#
chown root /dev/console
chmod 622 /dev/console
if [ -c /dev/drm0 ]; then
chown root /dev/drm0
fi
if [ -c /dev/drmR128 ]; then
chown root /dev/drmR128
fi
/usr/X11R6/bin/sessreg -d -l $DISPLAY -u none $USER