On Tue, Jan 10, 2006 at 09:44:19AM -0800, anil dahiya wrote: > Hi Sam > Thanks fop your help ..but my problem is not solved it > ...i putting my real problem here below. > > 1>my fist need is to make module1.ko made using > a1/a1.c , a1/a11.c & a2/a2.c a2/a22.c and all .c file > use /home/include/a.h This was covered in my first response. > > 2>Now my 2nd need is to make module2.ko using > module1.ko and b/b1.c & b/b11.c (these both .c files > use /home/include/a.h and /home/module2/include/b.h) This does not make sense. You cannot link in one module into anohter. And you would not be able to use module1 with module2 loaded due to name clash. But you can certainly call one module from another module. You just have to make sure module1 is loaded before module2. Last time I requested an URL to the source IIRC? Sam -- Kernelnewbies: Help each other learn about the Linux kernel. Archive: http://mail.nl.linux.org/kernelnewbies/ FAQ: http://kernelnewbies.org/faq/