Hi All,
I am trying to add the touch driver file ft5x06_ts.c to imx6q sabre auto kernel version is 3.10.53,
ft5x06_ts.c file i added in /... /git/drivers/input/touchscreen/ and in same path in make file is added object file name like obj-$(CONFIG_TOUCHSCREEN_FT5X06) +=ft5x06_ts.o , when i compile the the kernel it successfully compile but object file ft5x06_ts.o is not generating, could any one suggest me where i am went wrong, for other files object file is generating, Thanks in advance,
Best Regards.
Nandish SG
Solved! Go to Solution.
Hi Nandish,
You need to enable this "CONFIG_TOUCHSCREEN_FT5X06" on menuconfig.
Otherwise make it like below.
=> obj-y +=ft5x06_ts.o
It will compile automatically.
Regards,
Aravinth
Hi Aravinth,
Thank you,
Best Regards
nandish sg
Hi Nandish,
You need to enable this "CONFIG_TOUCHSCREEN_FT5X06" on menuconfig.
Otherwise make it like below.
=> obj-y +=ft5x06_ts.o
It will compile automatically.
Regards,
Aravinth
Hi Aravinthkumar ,
Thank you now i am able to see object file, using second option, but i enabled the FT5x06 in kernel using menuconfig,you mean to say in kernel, DeviceDriver->Input device support->Touchscreens->EDT Focaltech FT5x06 i2c Touchscreen support, i am right ?.or if any other option please share here,Thanks in advance,
best regards,
nandish
HI Nandish,
You are correct. In menu config if you enable it will work.
Best regards
Aravinth
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------