mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
Some config options, like IDF_TARGET, are present in sdkconfig.defaults even though they are promptless. The build system handles them manually and passes them to esp-idf-kconfig via config.env. However, esp-idf-kconfig reports them like a normal promptless symbol, which causes confusion. This commit adds KCONFIG_PROMPTLESS_NO_WARN — a semicolon-separated list of config option names that, even though promptless, should be excluded from the report. Closes https://github.com/espressif/esp-idf/issues/18441
14 lines
533 B
Bash
14 lines
533 B
Bash
{
|
|
"COMPONENT_KCONFIGS": "${kconfigs}",
|
|
"COMPONENT_KCONFIGS_PROJBUILD": "${kconfig_projbuilds}",
|
|
"COMPONENT_SDKCONFIG_RENAMES": "${sdkconfig_renames}",
|
|
"IDF_TARGET": "${idf_target}",
|
|
"IDF_TOOLCHAIN": "${idf_toolchain}",
|
|
"IDF_VERSION": "$ENV{IDF_VERSION}",
|
|
"IDF_ENV_FPGA": "${idf_env_fpga}",
|
|
"IDF_PATH": "${idf_path}",
|
|
"COMPONENT_KCONFIGS_SOURCE_FILE": "${kconfigs_path}",
|
|
"COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "${kconfigs_projbuild_path}",
|
|
"KCONFIG_PROMPTLESS_NO_WARN":"IDF_TARGET"
|
|
}
|