如何创建 Kconfig 文件

如何创建 Kconfig 文件

所以我有一个 hello world 模块和一个 Makefile。我希望模块显示在 make menuconfig 窗口中!我该怎么做?通过创建一个新的 Kconfig 文件还是其他什么?如果是这样,如何创建一个新的 Kconfig 文件?

答案1

首先在同一目录下创建一个“Kconfig”文件,并编辑该文件如下:

前任:

 menu "Networking"
 config NET
 tristate "my network driver" # --> this line gives the desc of the ko.
 depends on <ARCH>
 default y if <ARCH>
 help
   <Text displayed when help is selected for your driver>.

您还可以创建多级菜单,有关更多详细信息,请参阅内核配置

相关内容