歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux編程 >> Linux編程 >> AllWinnerTech A10添加驅動ko模塊方法

AllWinnerTech A10添加驅動ko模塊方法

日期:2017/3/1 11:09:03   编辑:Linux編程

【1】添加Linux觸摸屏驅動:
添加驅動代碼文件:
lichee\linux-2.6.36\drivers\input\touchscreen\mg-i2c-ts.c
lichee\linux-2.6.36\drivers\input\touchscreen\mg-i2c-ts.h

kconfig文件lichee\linux-2.6.36\drivers\input\touchscreen\Kconfig添加:
config TOUCHSCREEN_MG_I2C
tristate "Morgan multi-touch device"
depends on I2C
help
Say Y here if you have a Morgan multi-touch device

If unsure, say N.

Makefile文件lichee\linux-2.6.36\drivers\input\touchscreen\Makefile添加:
obj-$(CONFIG_TOUCHSCREEN_MG_I2C) += mg-i2c-ts.o

編譯內核:
./build.sh -p sun4i_crane


【2】Android2.3.4\device\softwinner\crane-evb-v13\mkfs.sh添加
cp $DRV_DIR/mg-i2c-ts.ko $PRODUCT_ROOT/drv/mg-i2c-ts.ko

【3】android啟動文件init.sun4i.rc注釋和添加
#insmod /drv/ft5x_ts.ko
insmod /drv/mg-i2c-ts.ko

串口輸出調試信息
在文件tools\crane-win-v2\wboot\bootfs\linux\params添加loglevel=8
console=ttyS0,115200 root=/dev/nandb rw init=/init mem=448M@0x40000000 fbmem=32M@0x5a000000 loglevel=8;

Copyright © Linux教程網 All Rights Reserved