mainmenu
用于指定主菜单的标题,简单的示例如下:
mainmenu "Linux/$(ARCH) $(KERNELVERSION) Kernel Configuration"
随后即可指定如红框内的标题:
menu子菜单的特性如下:
menu
会创建一个子菜单,菜单名跟随 menu
定义,即:menu "title"
# ...
endmenu
endmenu
进行结束。在结束前,其中所有选项或子菜单均隶属于该子菜单。例如:
mainmenu "mainmenu"
source "module_a/Kconfig"
source "module_b/Kconfig"
module_a/Kconfig
:menu "module A"
config BOOL_OPTION
bool
menu "submodule"
source "module_a/submodule/Kconfig"
endmenu
endmenu
module_b/Kconfig
:menu "module B"
menu "submodule"
source "module_b/submodule/Kconfig"
endmenu
endmenu
则上述主菜单中只会出现如下的两个子菜单选项:
module A --->
module B --->
config
选项的基本格式如下:
config ${name}
${type} ${title}
[${default}]
[${depends or select}]
[help]
[${tips}]
其中:
${name}
为必须项,用于生成.config文件中的配置项,生成结果为 CONFIG_${name}
。${type}
为必须项,可选类型包含 bool
、 tristate
、 string
、 hex
、 int
。其中 tristate
为三态,用于表示内核模块的编译配置,值有 y
、 m
、 n
三种。${title}
为必须项,是该选项在menuconfig界面中的选项名。${default}
,可选项,默认值。${depends or select}
,可选项,依赖关系。help
为帮助标签,可选项。${tips}
为帮助提示,配合 help
使用。当聚焦于目标选项时,按下 h
键即可查看帮助信息。依赖关系分为正向依赖关系( depends on
)和反向依赖关系( select
)两种:
select
的选项也会被强制选中。例如:
CONFIG BASE_FUNC1
bool "base function1"
CONFIG ADVANCED_FUNC1
bool "advanced function1"
depends on BASE_FUNC1
则会当选中 "base function1"
后,"advanced function1"
选项才会出现。
而例如:
CONFIG BASE_FUNC2
bool "base function2"
CONFIG ADVANCED_FUNC2
bool "advanced function2"
select BASE_FUNC2
则 "advanced function2"
会一直出现,并且若 "advanced function2"
被选中,则 "base function2"
无法被取消选中。
choice
可以把若干个config选项组合成一个单选项目。例如下方代码:
#
# Select the backing stores to be supported
#
choice
prompt "RomFS backing stores"
depends on ROMFS_FS
default ROMFS_BACKED_BY_BLOCK
help
Select the backing stores to be supported.
config ROMFS_BACKED_BY_BLOCK
bool "Block device-backed ROM file system support"
depends on BLOCK
help
This permits ROMFS to use block devices buffered through the page
cache as the medium from which to retrieve data. It does not allow
direct mapping of the medium.
If unsure, answer Y.
config ROMFS_BACKED_BY_MTD
bool "MTD-backed ROM file system support"
depends on MTD=y || (ROMFS_FS=m && MTD)
help
This permits ROMFS to use MTD based devices directly, without the
intercession of the block layer (which may have been disabled). It
also allows direct mapping of MTD devices through romfs files under
NOMMU conditions if the underlying device is directly addressable by
the CPU.
If unsure, answer Y.
config ROMFS_BACKED_BY_BOTH
bool "Both the above"
depends on BLOCK && (MTD=y || (ROMFS_FS=m && MTD))
endchoice
将三个选项组合成了一个单选项目,这一组中只有一个选择框可以被选中:
comment用于创建一个专门用于注释的一个项目,该项目不可被选中,且前后有 ***
包围,例如:
comment "shared options"
使用方式:
source "${path}"