diff options
author | Zhai Edwin <edwin.zhai@intel.com> | 2011-08-26 19:59:54 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-07 22:28:34 +0100 |
commit | ddb54d4a467b51f5f8f305f532bd5ea64df92876 (patch) | |
tree | e0c86c9891879ee21213a0a1a29cb95f19fb6720 /meta/recipes-graphics/x11-common | |
parent | d128b4f2746ee8525352ce982a9c2a5e422630f2 (diff) | |
download | openembedded-core-ddb54d4a467b51f5f8f305f532bd5ea64df92876.tar.gz openembedded-core-ddb54d4a467b51f5f8f305f532bd5ea64df92876.tar.bz2 openembedded-core-ddb54d4a467b51f5f8f305f532bd5ea64df92876.zip |
xserver-nodm-init: Change hidraw mode to allow normal user access
USB HID like touch screen could be presented as hidraw* device, this change
make user under rootless X can access them.
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
Diffstat (limited to 'meta/recipes-graphics/x11-common')
-rwxr-xr-x | meta/recipes-graphics/x11-common/xserver-nodm-init/xserver-nodm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-graphics/x11-common/xserver-nodm-init/xserver-nodm b/meta/recipes-graphics/x11-common/xserver-nodm-init/xserver-nodm index 858af0b67e..c707a4bdb8 100755 --- a/meta/recipes-graphics/x11-common/xserver-nodm-init/xserver-nodm +++ b/meta/recipes-graphics/x11-common/xserver-nodm-init/xserver-nodm @@ -34,6 +34,10 @@ case "$1" in chmod o+w /var/log chmod g+r /dev/tty[0-3] chmod o+rw /dev/input/* + # hidraw device is probably needed + if [ -e /dev/hidraw0 ]; then + chmod o+rw /dev/hidraw* + fi fi # Using su rather than sudo as latest 1.8.1 cause failure [YOCTO #1211] su -l -c '/etc/X11/Xserver&' $username |