How to configure a Linux kernel based on the modules currently in use?

Posted by Carla on Super User See other posts from Super User or by Carla
Published on 2010-05-29T01:36:32Z Indexed on 2010/05/29 1:42 UTC
Read the original article Hit count: 251

Filed under:
|
|

Hello, I'm willing to build a minimal kernel with only the needed things for my machine; so I started by compiling the kernel from the ground up, using the default configuration and adding things that I know for sure I have (i.e.: Ethernet card, WiFi card, ...).

But there are several other things not so easy to know about (i.e.: the watchdog timer) so I came across AutoKernConf which supposedly detects the hardware of the machine and generates a kernel configuration file with the settings for the found devices.

The problem is it contained several settings repeated and even some which I don't have (I'm using a Dell laptop and one of the things it "found" was something of a Toshiba one).

So I ended up building a kernel with the configuration that came out of the make allmodconfig command, which is a kernel with most of the things compiled as modules.

Booting into that kernel and running lsmod I can see all of the kernel modules in use (the ones really needed) and I would like to know if there is a tool or some way for me to parse that list and convert it to the corresponding kernel configuration file.

Or how to map each one with the appropriate options in the kernel so that I can manually set them.

Thank you very much for your time.

© Super User or respective owner

Related posts about linux

Related posts about customize