View previous topic :: View next topic |
Author |
Message |
capkin Tux's lil' helper
Joined: 16 Jul 2005 Posts: 90
|
Posted: Wed Sep 07, 2005 5:00 am Post subject: how to browse kernel config? |
|
|
I would like browse through my kernel configuration but I do not want to built the kernel. What is the best way? |
|
Back to top |
|
|
StonedZealot Tux's lil' helper
Joined: 06 Oct 2003 Posts: 90 Location: Rolla, Missouri
|
Posted: Wed Sep 07, 2005 5:17 am Post subject: |
|
|
You should be able to just move to /usr/src/linux and type "make menuconfig" and it should open up your current configuration to look through... _________________ Bored and posting on the forums... life is rough. |
|
Back to top |
|
|
ekutay l33t
Joined: 30 Mar 2005 Posts: 636 Location: Berlin
|
Posted: Wed Sep 07, 2005 5:20 am Post subject: |
|
|
In the end you must not save any settings you have made within menuconfig. You can also inspect the file /usr/src/linux/.config. There are also some other options like make xconfig, which I never use. _________________ -- erol |
|
Back to top |
|
|
Dlareh Advocate
Joined: 06 Aug 2005 Posts: 2102
|
Posted: Wed Sep 07, 2005 5:30 am Post subject: |
|
|
Nex time you rebuild your kernel, enable the following under make menuconfig :
Code: | General Setup --->
[*] Kernel .config support
[*] Enable access to .config through /proc/config.gz |
This will allow you to reliable access ther .config of the currently running kernel, e.g. :
Code: | zcat /proc/config.gz > /some/path/.config |
Code: | zgrep -i "something" /proc/config.gz |
_________________ "Mr Thomas Edison has been up on the two previous nights discovering 'a bug' in his phonograph." --Pall Mall Gazette (1889)
Are we THERE yet? |
|
Back to top |
|
|
|