Reputation: 3497
I'm following steps at this website, http://bootloader.wikidot.com/android:kgdb, and one of the steps requires me to configure the kernel when I make it. I was wondering how to do this? What files do I need to edit, or what commands do I need to input?
Upvotes: 2
Views: 4407
Reputation: 40407
For a very trivial change you can open the .config file in the kernel source directory with a text editor and do it manually.
For a change where options depend on each other its better to use one of the provided interfaces, such as 'make menuconfig'
You will find lots of documentation on this online, which makes the question a little surprising
Upvotes: 2