This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

How to insmod android SPI driver on ubuntu pc

I am developing SPI driver on PC ubuntu, for my devkit8000 OMAP3 android.

I saw some example on how to build one. But it seem like I can build my SPI driver and insmod it into the running kernel. (here is the link) http://www.jumpnowtek.com/index.php?option=com_content&view=article&id=57&Itemid=62

$ git clone git://github.com/scottellis/spike.git
$ cd spike
$ source overo-source-me.txt
$ make

Current my understanding is point it to my ubuntu's "/lib/modules/..." This part I managed. But I am not able to "modprobe omap2_mcspi", which I think is a major component for my SPI driver for DevKit8000.

I hope someone can help me to verify is it true that I can insmod my SPI driver into the running kernel. If that is possible, when I "make" which should I point to. And how should I make modprobe appears.

Also, I think the "source overo-source-me.txt" for my site is configured wrongly. I help me how to make it properly.