You are not logged in.
Pages: 1
Hi there.
After the most recent udev update, the tpb tool stopped working. I figured out, that this was a /dev/nvram permission thing.
The new update obviously introduced a new rule layout, which I hadn't noticed. Now for the problem:
mfa@phobos ~> ls -l /dev/nvram
crw-rw---- 1 root root 10, 144 2008-03-16 12:25 /dev/nvram -> /dev/misc/nvramThe /dev/nvram group was root. Looking at the rules I saw the following:
root@phobos /etc/udev/rules.d> grep nvram *
51-arch.rules:# KERNEL=="nvram", NAME="misc/%k", SYMLINK+="%k", GROUP="kmem", MODE="0640"
75-nvram.rules:KERNEL=="nvram", NAME="%k", GROUP="nvram", MODE="0660", OPTIONS="last_rule"However, neither the Groups were set correctly to kmem and nvram, nor the directory permissions. The question is why is that? I could not find any mistakes in the rules.
I do have a solution for me now, I simply commented out the line in 51-arch.rules and I got
root@phobos ~> ls -l /dev/nvram
crw-rw---- 1 root nvram 10, 144 2008-03-16 12:25 /dev/nvramwhich works fine.
Does anybody else have this issue? Why does setting the group and permissions fail with the standard rule set?
Cheers,
mfa
Offline
Was there anything about this in /etc/udev/readme-udev-arch.txt? If not, there may be a bug.
Offline
Nope, there was nothing about nvram in there...
Offline
Pages: 1