mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/save_defconfig_add_menu' into 'master'
fix(idf.py): fixed save-defconfig failing due to wrong argument name See merge request espressif/esp-idf!26617
This commit is contained in:
commit
c79dc27961
@ -58,6 +58,8 @@
|
||||
.patterns-build_system: &patterns-build_system
|
||||
- "tools/cmake/**/*"
|
||||
- "tools/kconfig_new/**/*"
|
||||
- "tools/idf.py"
|
||||
- "tools/idf_py_actions/**/*"
|
||||
- "tools/requirements.json"
|
||||
- "tools/ci/test_build_system*.sh"
|
||||
- "tools/ci/test_build_system*.py"
|
||||
|
@ -77,8 +77,8 @@ def action_extensions(base_actions: Dict, project_path: str) -> Any:
|
||||
args.no_hints = True
|
||||
build_target(target_name, ctx, args)
|
||||
|
||||
def save_defconfig(target_name: str, ctx: Context, args: PropertyDict, menu_labels: bool) -> None:
|
||||
if menu_labels:
|
||||
def save_defconfig(target_name: str, ctx: Context, args: PropertyDict, add_menu_labels: bool) -> None:
|
||||
if add_menu_labels:
|
||||
os.environ['ESP_IDF_KCONFIG_MIN_LABELS'] = '1'
|
||||
else:
|
||||
# unset variable
|
||||
|
Loading…
Reference in New Issue
Block a user