On Sun, 23 Mar 2003 22:35:46 -0600, Gary Cote <gcote@transat-tech.com> wrote: >I'm trying to move my linux module from the development >environment to the distribution environment, but I'm getting >an unresolved symbol error (sockfd_lookup) when I insmod it. >2.4.18-3 is RH 7.3 out of the box...driver is compiled against same Not quite, the kernel is compiled with modversions but your modules has no modversions. ># insmod wtp.o >wtp.o: unresolved symbol sockfd_lookup No modversion in module. The combination of a versioned kernel and a non-versioned module should work. Send me the output from grep sockfd_lookup /proc/ksyms insmod -v wtp.o - : send the line "unsubscribe linux-net" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html