Summary: | udev-135 seems to break direct rendering | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Donnie Berkholz (RETIRED) <dberkholz> |
Component: | [OLD] Core system | Assignee: | udev maintainers <udev-bugs> |
Status: | RESOLVED OBSOLETE | ||
Severity: | normal | ||
Priority: | High | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Bug Depends on: | |||
Bug Blocks: | 254616 | ||
Attachments: | emerge --info |
Description
Donnie Berkholz (RETIRED)
![]() So what were the permissions of /dev/dri/card* before and after the update. ls -l output should be fine. What exact udev versions did you test? And please attach emerge --info udev-135-r3 -------------- comet $ ls -l /dev/dri/card0 crw-rw---- 1 root root 226, 0 2009-01-21 15:01 /dev/dri/card0 udev-133 -------------- comet $ ls -l /dev/dri/card0 crw-rw-rw- 1 root video 226, 0 2009-01-21 15:01 /dev/dri/card0 Created attachment 179368 [details]
emerge --info
It looks like X munges permissions from 666 to 660 on restart, so the video group is really the key. So we should be fine after adding this line to 65-permissions.rules, correct? # /dev/dri/card* KERNEL=="card*", GROUP="video" (In reply to comment #5) > So we should be fine after adding this line to 65-permissions.rules, correct? > > # /dev/dri/card* > KERNEL=="card*", GROUP="video" I tested this and it worked great, so yes. Upstream added this rule: SUBSYSTEM=="drm", GROUP="video" https://bugs.launchpad.net/bugs/317430 This will be added to udev-135-r4 then. Fixed in udev-135-r4. Works for me |