diff options
author | Richard Griffiths <rgriffit@windriver.com> | 2010-09-21 13:38:09 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-04 09:40:58 +0100 |
commit | 546ffc5fa5b41c7f48c16eb0ae35657e549249e9 (patch) | |
tree | e8c49819c706945438af6ee0d491872e57f6e6de /meta/recipes-graphics/x11-common | |
parent | ce7101b1f03a9d5b782934e5976a5183e44affb0 (diff) | |
download | poky-546ffc5fa5b41c7f48c16eb0ae35657e549249e9.tar.gz |
x11-common: correct the syntax for the -mouse arg to Xfbdev
Fixes [BUGID #99]
The mouse option as passed to Xfbdev was correct for most
targets, except mips (and a PS/2 mouse). Modifying the
syntax of the option fixes the mips case, and has no impact
on other users.
Signed-off-by: Richard Griffiths <rgriffit@windriver.com>
Diffstat (limited to 'meta/recipes-graphics/x11-common')
-rw-r--r-- | meta/recipes-graphics/x11-common/x11-common/etc/X11/Xserver | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xserver b/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xserver index 3d4aa74b95..57923e6b95 100644 --- a/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xserver +++ b/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xserver | |||
@@ -36,7 +36,7 @@ if [ "$XSERVER" != "/usr/bin/Xorg" ]; then | |||
36 | 36 | ||
37 | # use usb mouse if present | 37 | # use usb mouse if present |
38 | if [ -z "$TSLIB_TSDEVICE" ] && [ -e /dev/input/mice ]; then | 38 | if [ -z "$TSLIB_TSDEVICE" ] && [ -e /dev/input/mice ]; then |
39 | ARGS="$ARGS -mouse /dev/input/mice" | 39 | ARGS="$ARGS -mouse mouse,/dev/input/mice" |
40 | fi | 40 | fi |
41 | 41 | ||
42 | # kdrive 1.4 onwards needs -mouse args | 42 | # kdrive 1.4 onwards needs -mouse args |