devfs.rules not being applied

I recently upgraded from 14.3 to 15.1 and have had issues with my wifi mouse not working with xorg but since I use wayland swayfx display manager it is not a show stopper, but I would really like to resolve the problem - that is the mouse works in the console and swayfx but not in my fall back x11 window manager x11-wm/windowmaker


I think that the issue is my devfs.rules in that despite the devfs service running without errors the rules related to /dev/input are not being applied at boot or if I run
service devfs restart

Code:
cat /etc/devfs.rules
[localrules=10]
add path 'input*' mode 0775 group 5
add path 'input/*' mode 0660 group 5
add path 'ugen*' mode 0660 group 5
add path 'usb/*' mode 0660 group 5
add path 'usb' mode 0770 group 5
# Match any nested device nodes inside the usb directory:
add path 'usb/**' mode 0660 group 5

My /etc/rc.conf has the following call to devfs
Code:
# HOST RULES
devfs_system_ruleset="10"

I was expecting the devfs.rules to affect the /dev/input to give the operator group to have read write to it but this is not happening
Code:
ls -l /dev/input
total 0
crw-------  1 root wheel   0xd Aug  2 08:22 event0
crw-------  1 root wheel  0x1a Aug  2 08:13 event1
crw-------  1 root wheel 0x1d6 Aug  2 08:22 event10
crw-------  1 root wheel 0x1d7 Aug  2 08:22 event11
crw-------  1 root wheel  0x36 Aug  2 08:22 event2
crw-------  1 root wheel  0x3d Aug  2 08:22 event3
crw-------  1 root wheel  0xa6 Aug  2 08:22 event4
crw-------  1 root wheel  0xb2 Aug  2 08:22 event5
crw-------  1 root wheel 0x1d2 Aug  2 20:13 event6
crw-------  1 root wheel 0x1d3 Aug  2 08:22 event7
crw-------  1 root wheel 0x1d4 Aug  2 08:22 event8
crw-------  1 root wheel 0x1d5 Aug  2 20:13 event9
 
Back
Top