| Submitter | Xiaofeng Yan |
|---|---|
| Date | Nov. 30, 2011, 10:33 a.m. |
| Message ID | <43e4ff11b1c935566e81f3ad7f2c64a709c4cdb3.1322648566.git.xiaofeng.yan@windriver.com> |
| Download | mbox | patch |
| Permalink | /patch/15837/ |
| State | New |
| Headers | show |
Comments
Op 30 nov. 2011, om 11:33 heeft Xiaofeng Yan het volgende geschreven: > From: Xiaofeng Yan <xiaofeng.yan@windriver.com> > > The previous mode of starting X is as follow: > $Xfbdev :0 -keybd keyboard -mouse tslib > This mode cause that some keys can't be mapped rightly. \ > for example "Down" have the same function with "Enter". > > another drive mode "evdev" can work rightly in new version. > $Xfbdev :0 -keybd evdev,,device=/dev/input/event0 -mouse tslib How do you know that event0 is the keyboard?
On 2011?11?30? 18:50, Koen Kooi wrote: > Op 30 nov. 2011, om 11:33 heeft Xiaofeng Yan het volgende geschreven: > >> From: Xiaofeng Yan<xiaofeng.yan@windriver.com> >> >> The previous mode of starting X is as follow: >> $Xfbdev :0 -keybd keyboard -mouse tslib >> This mode cause that some keys can't be mapped rightly. \ >> for example "Down" have the same function with "Enter". >> >> another drive mode "evdev" can work rightly in new version. >> $Xfbdev :0 -keybd evdev,,device=/dev/input/event0 -mouse tslib > How do you know that event0 is the keyboard? I get this with qemuarm by test Do you have better method? > > > _______________________________________________ > Openembedded-core mailing list > Openembedded-core@lists.openembedded.org > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
Patch
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 57923e6..736cd6d 100644 --- a/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xserver +++ b/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xserver @@ -28,11 +28,13 @@ module_id() { ARGS=" -br -pn" +KD_DRIVE_KEYBOARD="-keybd keyboard" +KD_DRIVE_EVDEV="-keybd evdev,,device=/dev/input/event0" if [ "$XSERVER" != "/usr/bin/Xorg" ]; then . /etc/formfactor/config - ARGS="$ARGS -keybd keyboard" + ARGS="$ARGS $KD_DRIVE_EVDEV" # use usb mouse if present if [ -z "$TSLIB_TSDEVICE" ] && [ -e /dev/input/mice ]; then