diff options
author | Darren Hart <dvhart@linux.intel.com> | 2013-04-03 12:49:40 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-04 14:00:15 +0100 |
commit | 66c9b46f987f3e4f1f9b7b11d1ae157897454f07 (patch) | |
tree | f736b040dc2802a456b500fdf4411d509323c983 /meta/recipes-core/udev | |
parent | 262234ab50636463f03fd4daccecc1232682ff59 (diff) | |
download | openembedded-core-66c9b46f987f3e4f1f9b7b11d1ae157897454f07.tar.gz openembedded-core-66c9b46f987f3e4f1f9b7b11d1ae157897454f07.tar.bz2 openembedded-core-66c9b46f987f3e4f1f9b7b11d1ae157897454f07.zip |
udev-extraconf: Add rule adding input devices to input group
Fixes [YOCTO 4164](2/3)
Add all /dev/input/* devices to the input group with g+rw. This is
needed for rootless X without adding a security hole by making the
device o+rw.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Cc: Saul Wold <sgw@linux.intel.com>
Cc: Radu Moisan <radu.moisan@intel.com>
Cc: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-core/udev')
-rw-r--r-- | meta/recipes-core/udev/udev-extraconf/localextra.rules | 2 | ||||
-rw-r--r-- | meta/recipes-core/udev/udev-extraconf_1.0.bb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-core/udev/udev-extraconf/localextra.rules b/meta/recipes-core/udev/udev-extraconf/localextra.rules index 4eaa8ca9b0..3d51d3e395 100644 --- a/meta/recipes-core/udev/udev-extraconf/localextra.rules +++ b/meta/recipes-core/udev/udev-extraconf/localextra.rules @@ -19,3 +19,5 @@ KERNEL=="rtc0", SYMLINK+="rtc" #The first framebuffer is symlinked to /dev/fb KERNEL=="fb0", SYMLINK+="fb" +# Make all input devices read-write to the input group +SUBSYSTEM=="input", GROUP="input", MODE="660" diff --git a/meta/recipes-core/udev/udev-extraconf_1.0.bb b/meta/recipes-core/udev/udev-extraconf_1.0.bb index 2c4a4f1976..ea95a60067 100644 --- a/meta/recipes-core/udev/udev-extraconf_1.0.bb +++ b/meta/recipes-core/udev/udev-extraconf_1.0.bb @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3 inherit allarch -PR = "r7" +PR = "r8" SRC_URI = " \ file://automount.rules \ |