diff options
author | Steven Rostedt <rostedt@goodmis.org> | 2012-10-05 16:52:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-07 18:55:25 -0400 |
commit | 80b810b276cf89587cdaa103e39027813b1be46c (patch) | |
tree | 54d6d0dace0bf0629dbfce1aec9f1b6b1f285272 /README | |
parent | d8dc91b753b881c60c766c06aeec87675a07df4a (diff) |
localmodconfig: Document localmodconfig in README
Someone (over a year ago :-p) asked me to document localmodconfig in the
README file in the source code. I thought it was a good idea but other
things were more important and I simply forgot about it. Well, I
stumbled on the email asking me about this and I'm sending it out now.
Signed-off-by: Steven "Mr. Procrastinator" Rostedt <rostedt@goodmis.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'README')
-rw-r--r-- | README | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -206,6 +206,24 @@ CONFIGURING the kernel: | |||
206 | "make randconfig" Create a ./.config file by setting symbol | 206 | "make randconfig" Create a ./.config file by setting symbol |
207 | values to random values. | 207 | values to random values. |
208 | 208 | ||
209 | "make localmodconfig" Create a config based on current config and | ||
210 | loaded modules (lsmod). Disables any module | ||
211 | option that is not needed for the loaded modules. | ||
212 | |||
213 | To create a localmodconfig for another machine, | ||
214 | store the lsmod of that machine into a file | ||
215 | and pass it in as a LSMOD parameter. | ||
216 | |||
217 | target$ lsmod > /tmp/mylsmod | ||
218 | target$ scp /tmp/mylsmod host:/tmp | ||
219 | |||
220 | host$ make LSMOD=/tmp/mylsmod localmodconfig | ||
221 | |||
222 | The above also works when cross compiling. | ||
223 | |||
224 | "make localyesconfig" Similar to localmodconfig, except it will convert | ||
225 | all module options to built in (=y) options. | ||
226 | |||
209 | You can find more information on using the Linux kernel config tools | 227 | You can find more information on using the Linux kernel config tools |
210 | in Documentation/kbuild/kconfig.txt. | 228 | in Documentation/kbuild/kconfig.txt. |
211 | 229 | ||