On Monday 29 September 2003 22:12, Holden Hao wrote: > Related to this how do you know if the module you are looking for is > already compiled in the kernel? (Without looking at you .config file) > Do you just try it?
:-). that's probably the fastest way. otherwise, there were several suggestions involving /lib/modules/`uname -r`. e.g., if you know what the filename of the module is, you could do: find /lib/modules/`uname -r` -name <module_name.o> or find /lib/modules/`uname -r` | grep <module_fragment> or something similar. tiger -- Gerald Timothy Quimpo gquimpo*hotmail.com tiger*sni*ph http://bopolissimus.sni.ph Public Key: "gpg --keyserver pgp.mit.edu --recv-keys 672F4C78" Dyslexics have more fnu. -- Philippine Linux Users' Group (PLUG) Mailing List [EMAIL PROTECTED] (#PLUG @ irc.free.net.ph) Official Website: http://plug.linux.org.ph Searchable Archives: http://marc.free.net.ph . To leave, go to http://lists.q-linux.com/mailman/listinfo/plug . Are you a Linux newbie? To join the newbie list, go to http://lists.q-linux.com/mailman/listinfo/ph-linux-newbie
