Compilation Successfull But Object File is Not Generating

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Compilation Successfull But Object File is Not Generating

Jump to solution
712 Views
nandishguruling
Contributor III

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

Labels (4)
0 Kudos
1 Solution
571 Views
aravinthkumarja
Senior Contributor II

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

View solution in original post

0 Kudos
4 Replies
571 Views
nandishguruling
Contributor III

Hi Aravinth,

Thank you,

Best Regards

nandish sg

0 Kudos
572 Views
aravinthkumarja
Senior Contributor II

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

0 Kudos
571 Views
nandishguruling
Contributor III

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

0 Kudos
571 Views
aravinthkumarja
Senior Contributor II

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!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos