summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--UPDATING8
-rw-r--r--etc/group1
-rw-r--r--sys/dev/drm/drmP.h2
-rw-r--r--sys/dev/drm2/drmP.h2
4 files changed, 11 insertions, 2 deletions
diff --git a/UPDATING b/UPDATING
index bc05d3c..bd2d45d 100644
--- a/UPDATING
+++ b/UPDATING
@@ -31,6 +31,14 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11.x IS SLOW:
disable the most expensive debugging functionality run
"ln -s 'abort:false,junk:false' /etc/malloc.conf".)
+20150809:
+ The default group assigned to /dev/dri entries has been changed
+ from 'wheel' to 'video' with the id of '44'. If you want to have
+ access to the dri devices please add yourself to the video group
+ with:
+
+ # pw groupmod video -m $USER
+
20150806:
The menu.rc and loader.rc files will now be replaced during
upgrades. Please migrate local changes to menu.rc.local and
diff --git a/etc/group b/etc/group
index 5918ac1..ae013e8 100644
--- a/etc/group
+++ b/etc/group
@@ -17,6 +17,7 @@ sshd:*:22:
smmsp:*:25:
mailnull:*:26:
guest:*:31:
+video:*:44:
bind:*:53:
unbound:*:59:
proxy:*:62:
diff --git a/sys/dev/drm/drmP.h b/sys/dev/drm/drmP.h
index 7725884..7ff1495 100644
--- a/sys/dev/drm/drmP.h
+++ b/sys/dev/drm/drmP.h
@@ -175,7 +175,7 @@ SYSCTL_DECL(_hw_drm);
#define DRM_DEV_MODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP)
#define DRM_DEV_UID 0
-#define DRM_DEV_GID 0
+#define DRM_DEV_GID 44 /* "video" group */
#define wait_queue_head_t atomic_t
#define DRM_WAKEUP(w) wakeup((void *)w)
diff --git a/sys/dev/drm2/drmP.h b/sys/dev/drm2/drmP.h
index f028d81..88cb2b7 100644
--- a/sys/dev/drm2/drmP.h
+++ b/sys/dev/drm2/drmP.h
@@ -1593,7 +1593,7 @@ SYSCTL_DECL(_hw_drm);
#define DRM_DEV_MODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP)
#define DRM_DEV_UID 0
-#define DRM_DEV_GID 0
+#define DRM_DEV_GID 44 /* "video" group */
#define DRM_WAKEUP(w) wakeup((void *)w)
#define DRM_WAKEUP_INT(w) wakeup(w)
OpenPOWER on IntegriCloud