在线时间58 小时
UID3083329
注册时间2014-12-14
NXP金币0
该用户从未签到
中级会员
 
- 积分
- 459
- 最后登录
- 2016-8-15
|
本帖最后由 FSL_TICS_ZJJ 于 2015-8-5 11:15 编辑
大家好,我在mx6q的板子跑系统,系统使用ltib编的FSL gnome release package,linux系统跑起来之后键盘灯也不亮,但是数字键盘能用,
只是ALT键不能用,CTRL+ALT+ F1不能切换至文本模式,并且提示好多以下信息:
matchbox: keyboard does not appear to have a <alt> key.
matchbox: ignoring key shortcut <Alt>n=next
matchbox: keyboard does not appear to have a <alt> key.
matchbox: ignoring key shortcut <Alt>p=prev
matchbox: keyboard does not appear to have a <alt> key.
matchbox: ignoring key shortcut <Alt>c=close
、、、、、、、
/usr/bin/startx文件如下:
#!/bin/sh
IS_BABBAGE=NO
grep Babbage /proc/cpuinfo > /dev/null 2>&1
#if [ $? = 0 ]; then
if ! test -f do_not_exist; then
IS_BABBAGE=YES
# Xfbdev -keybd keyboard,,device=/dev/input/keyboard0 -mouse mouse,2,device=/dev/input/mice &
Xfbdev -nolisten tcp -keybd keyboard,,device=/dev/input/keyboard0 -mouse mouse,2,device=/dev/input/mice &
else
Xfbdev -mouse tslib,2,device=/dev/input/ts0 &
fi
sleep 8
matchbox-window-manager -d :0 -use_lowlight no -use_titlebar yes -use_cursor yes&
matchbox-desktop&
matchbox-panel --bgtrans yes &
sleep 5
# Calibrate when using the rootfs the first time
if [ $IS_BABBAGE = NO ]; then
ls /usr/etc | grep pointercal > /dev/null 2>&1
if [ $? = 1 ]; then
ts_calibrate
fi
fi
通过修改~/.matchbox/kbdconfig可以去掉错误信息,但是不能识别ALT键,请问如何解决?
|
评分
-
查看全部评分
|