LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   copying menuconfig help options (https://www.linuxquestions.org/questions/linux-newbie-8/copying-menuconfig-help-options-770552/)

ekamlesh 11-20-2009 10:54 PM

copying menuconfig help options
 
Dear members, Is it possible to copy all the options that
Code:

make menuconfig
offers while compiling the kernel to a single text file ?. The benefit
will be, one can first read that file at leisure with just a text editor or cat, without running the command "make menuconfig". Thanks in advance.

tredegar 11-21-2009 06:00 AM

Have you tried
Code:

cat /boot/config-$(uname -r)
which works for me.

ekamlesh 11-22-2009 09:13 PM

Thanks tredegar, is it possible to accumlate the help output associated with each config option in a single file ? I think menuconfig uses /Docmentation/configure.help file to display the help (but I am not sure).

Tinkster 11-23-2009 03:06 AM

Code:

find /path/to/linux-src  -name Kconfig | xargs cat

ekamlesh 11-24-2009 09:26 PM

Thankyou Tinkster, this will help me. I am in process of trimming my Slackware 12.2 kernel.


All times are GMT -5. The time now is 07:05 AM.