Re: [Ilugc] How to compile module

2008-12-12 Thread Ashish Verma
Thanks Santosh and Satish. Regards, Ashish On Fri, Dec 12, 2008 at 1:34 PM, Satish Eerpini wrote: > Hi ashish , > > > they are the object files which were linked into the kernel module > file(.ko), you need not worry about them , they should actually be > gone if you run 'make clean' >

Re: [Ilugc] How to compile module

2008-12-12 Thread Satish Eerpini
Hi ashish , they are the object files which were linked into the kernel module file(.ko), you need not worry about them , they should actually be gone if you run 'make clean' also for more info refer to LDD 3rd edition (Linux Device Drivers) , it is all explained there , .. .you should

Re: [Ilugc] How to compile module

2008-12-11 Thread Ashish Verma
Hi Santosh, The problem was in the make file. I had put pcnet32.c instead of .o. The module has now been compiled. Now I got 4 files pcnet32.ko - I placed in /lib/modules/2.6.25.14/kernel/drivers/net What should I do with the rest. What are these for? I found similar file types in the /usr/src/l

Re: [Ilugc] How to compile module

2008-12-11 Thread Santosh
Ashish Verma wrote: Hi, I dont know why this is not working for me. I was able to compile the hello world module without errors. I got the below error: make -C "/lib/modules/2.6.25.14/build" M=/root modules make[1]: Entering directory '/usr/src/linux-2.6.25.14' scripts/Makefile.build:217: targ

Re: [Ilugc] How to compile module

2008-12-11 Thread Santosh
Ashish Verma wrote: Hi, I dont know why this is not working for me. I was able to compile the hello world module without errors. I got the below error: make -C "/lib/modules/2.6.25.14/build" M=/root modules make[1]: Entering directory '/usr/src/linux-2.6.25.14' scripts/Makefile.build:217: targ

Re: [Ilugc] How to compile module

2008-12-11 Thread Ashish Verma
Hi, I dont know why this is not working for me. I was able to compile the hello world module without errors. I got the below error: make -C "/lib/modules/2.6.25.14/build" M=/root modules make[1]: Entering directory '/usr/src/linux-2.6.25.14' scripts/Makefile.build:217: target '/root/pcnet32.c' d

Re: [Ilugc] How to compile module

2008-12-11 Thread kish
this helped me http://tldp.org/LDP/lkmpg/2.6/html/lkmpg.html -- kish --- Esse Quam Videri krisk.wordpress.com ___ To unsubscribe, email [EMAIL PROTECTED] with "unsubscribe " in the subject or body of the message. http://www.ae.iitm.ac.in

Re: [Ilugc] How to compile module

2008-12-11 Thread Santosh
Ashish Verma wrote: Hi, I have a pcnet32.c file. I want to make a module out of it. What should I do. The below link requires me to make a make file. I don't know how to do that. Please advise. http://www.cyberciti.biz/tips/build-linux-kernel-module-against-installed-kernel-source-tree.html Re

[Ilugc] How to compile module

2008-12-11 Thread Ashish Verma
Hi, I have a pcnet32.c file. I want to make a module out of it. What should I do. The below link requires me to make a make file. I don't know how to do that. Please advise. http://www.cyberciti.biz/tips/build-linux-kernel-module-against-installed-kernel-source-tree.html Regards, Ashish