如何在MTK65xx中添加驱动文件

先修改 :\mediatek\config\gxq15_td_ics\ProjectConfig,mk 文件。

添加:

CUSTOM_KERNEL_XIAO = xiao_1

意思就是:

在mediatek\custom\gxq15_td_ics\kernel目录下找到xiao目录下的xiao_1 文件夹。

因此在mediatek\custom\gxq15_td_ics\kernel目录下:

1.创建 xiao 文件夹。

2.进入xiao文件夹,再次创建xiao_1文件夹。

3.把.c文件放入里面,编译的时候会自动编译。

如:\mediatek\custom\gxq15_td_ics\kernel\xiao\xiao_1\xxx.c

编译:

./mk    gxq15_xxxx   remake  kernel

 

  CC      ../mediatek/custom/out/gxq15_td_ics/kernel/xiao/xiao_1.o
../mediatek/custom/out/gxq15_td_ics/kernel/xiao/xiao_1.c:3: warning: function declaration isn't a prototype
../mediatek/custom/out/gxq15_td_ics/kernel/xiao/xiao_1.c:2: warning: return type of 'main' is not 'int'
../mediatek/custom/out/gxq15_td_ics/kernel/xiao/xiao_1.c: In function 'main':
../mediatek/custom/out/gxq15_td_ics/kernel/xiao/xiao_1.c:4: warning: unused variable 'i'

好了,就这样。

你可能感兴趣的:(function,MTK)