Android:如何配置内核?
我正在按照此网站 http://bootloader.wikidot.com/android:kgdb,其中一个步骤要求我在制作内核时配置内核。我想知道如何做到这一点?我需要编辑哪些文件,或者需要输入哪些命令?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于非常小的更改,您可以使用文本编辑器打开内核源目录中的 .config 文件并手动执行。
对于选项相互依赖的更改,最好使用提供的接口之一,例如“make menuconfig”
您会在网上找到很多有关此的文档,这使得这个问题有点令人惊讶
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