-
Notifications
You must be signed in to change notification settings - Fork 18
update udev rules #54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
scgbckbone
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looking good! thanks
I'll test few different targets before moving on with this
|
sure, I've only machines running archlinux, but I can try few others distros on vms w/ usb passthrough |
|
I've been reported that |
|
I ran into the same problem that systemd as of version 258 does not allow udev rules set permissions with a custom group (source). Keepkey and Jade that also use the non-system group plugdev will have this problem. I was able to fix it with the following I was not familiar with the As people upgrade to new versions of Linux OSs with systemd v258, it will break the connectivity to wallets. There are not so many references about this problem. |
|
@pythcoiner your diff (with or without inline @algotechio version works ok: @pythcoiner can you verify above works for you too ? |
I recently hit a connectivity issue w/ my mk4 on archlinux after an OS update.
My understanding of this thread that seems related is:
GROUP="plugdev"on systems that don't haveplugdevgroup (like archlinux)plugdevgroup cannot access to the hid interface anymore.archlinux advice to use
TAG+="uaccess"restricting access to logged-in users rather than a group.all others signing devices vendor that I've checked uses combinations of
TAG+="uaccess"+TAG+="udev-acl"(seems to be kept for compatibilty w/ older systems) + (inline)SUBSYSTEM=="usb"This PR apply the same scheme