Re: [gentoo-user] Re: modules built post kernel install (on the fly)

2006-03-05 Thread Boyd Stephen Smith Jr.
On Saturday 04 March 2006 10:07, Masood Ahmed [EMAIL PROTECTED] wrote about 'Re: [gentoo-user] Re: modules built post kernel install (on the fly)': Harry Putnam wrote: Masood Ahmed [EMAIL PROTECTED] writes: Thanks Masood, for the pointers.. I have a question about your sig. Do you get

[gentoo-user] Re: modules built post kernel install (on the fly)

2006-03-04 Thread Peter
On Sat, 04 Mar 2006 09:15:04 -0600, Harry Putnam wrote: Is this possible: Compile a module by itself (not during kernel compile) and insert that module into a running kernel. I'm pretty sure this is possible but have no idea how to do it. Pawing thru google. `site:gentoo.org modules on

[gentoo-user] Re: modules built post kernel install (on the fly)

2006-03-04 Thread Harry Putnam
Peter [EMAIL PROTECTED] writes: Yes. cd /usr/src/linux make menuconfig or make xconfig choose the module option you wish to enable Select whether to build into the kernel or as a module. exit and save make make modules_install You should not have to copy bzImage unless you built your

Re: [gentoo-user] Re: modules built post kernel install (on the fly)

2006-03-04 Thread Masood Ahmed
Peter wrote: On Sat, 04 Mar 2006 09:15:04 -0600, Harry Putnam wrote: Is this possible: Compile a module by itself (not during kernel compile) and insert that module into a running kernel. Yes. cd /usr/src/linux make menuconfig or make xconfig choose the module option you

[gentoo-user] Re: modules built post kernel install (on the fly)

2006-03-04 Thread Harry Putnam
Masood Ahmed [EMAIL PROTECTED] writes: [...] Thanks Masood, for the pointers.. I have a question about your sig. -- Linux Kernel : 2.6.15-gentoo-r7 GCC version : 4.0.2 (Gentoo 4.0.2-r3, pie-8.7.8) Processor : AMD Athlon XP 2600+ RAM : 1 GB DDR 333 SDRAM CFLAGS USED :

Re: [gentoo-user] Re: modules built post kernel install (on the fly)

2006-03-04 Thread Masood Ahmed
Harry Putnam wrote: Masood Ahmed [EMAIL PROTECTED] writes: [...] Thanks Masood, for the pointers.. I have a question about your sig. () Do you get that info from a single command or several? The answer is several, for kernel version i did 'uname -r' for gcc-version i did 'gcc -v'

[gentoo-user] Re: modules built post kernel install (on the fly)

2006-03-04 Thread Peter
On Sat, 04 Mar 2006 09:35:35 -0600, Harry Putnam wrote: Peter [EMAIL PROTECTED] writes: Yes. cd /usr/src/linux make menuconfig or make xconfig choose the module option you wish to enable Select whether to build into the kernel or as a module. exit and save make make modules_install

[gentoo-user] Re: modules built post kernel install (on the fly)

2006-03-04 Thread Harry Putnam
Peter [EMAIL PROTECTED] writes: That is correct. Unless you alter bzImage, modprobe newmodule should work just fine. If your new module is built in, you will need to reload the kernel (reboot). Ok, this is confusing to me... What do you mean by `built in'. I'm thinking the very nature of a

Re: [gentoo-user] Re: modules built post kernel install (on the fly)

2006-03-04 Thread Brett I. Holcomb
Builtin means it's built into the kernel - the * indicates that. On Saturday March 4 2006 23:03, Harry Putnam wrote: Peter [EMAIL PROTECTED] writes: That is correct. Unless you alter bzImage, modprobe newmodule should work just fine. If your new module is built in, you will need to reload

Re: [gentoo-user] Re: modules built post kernel install (on the fly)

2006-03-04 Thread Holly Bostick
Harry Putnam schreef: Peter [EMAIL PROTECTED] writes: That is correct. Unless you alter bzImage, modprobe newmodule should work just fine. If your new module is built in, you will need to reload the kernel (reboot). Ok, this is confusing to me... What do you mean by `built in'. I'm

[gentoo-user] Re: modules built post kernel install (on the fly)

2006-03-04 Thread Harry Putnam
Holly Bostick [EMAIL PROTECTED] writes: So what Peter meant was ] [...] Yeah thats what I suggested it meant. I added some unnecessary confusion by saying `the very nature of module is that it is not built in'... sorry. Just sloppy thinking here thanks for clearing that up very well.

Re: [gentoo-user] Re: modules built post kernel install (on the fly)

2006-03-04 Thread Ryan Tandy
Harry Putnam wrote: I guess I sort of thought there was some trick way to just compile a module and not do all the linking and grinding of `make' against the whole tree. Unless you've done 'make clean' previously, 'make' will only compile required files based on changes you've made to your