selected device is not a touchscreen I understand
arm交叉编译工具中的头文件库中的linux/input.h中的EV_VERSION定义为
#define EV_VERSION 0x010000
而linux内核include/linux/input.h中的EV_VERSION定义为
#define EV_VERSION 0x010001
由此可见问题就出现在内核的输入子系统的版本号不匹配的问题
解决办法:
1.将内核源代码里的include/linux/input.h中的
// #define EV_VERSION 0x010001 #define EV_VERSION 0x010000
Error: Selected device is not a touchscreen I understand,布布扣,bubuko.com
Error: Selected device is not a touchscreen I understand
原文地址:http://www.cnblogs.com/kozmers/p/3812624.html