tools: Deprecated commands removed from idf.py

Remove deprecated commands from idf.py, but they are still kept working as cmake deprecated targets.
This commit is contained in:
Marek Fiala
2022-03-18 12:09:14 +01:00
parent 7ab8c39bb2
commit b5c374ae3e
6 changed files with 45 additions and 59 deletions

View File

@@ -405,52 +405,24 @@ def action_extensions(base_actions, project_path):
},
'efuse-common-table': {
'callback': build_target,
'help': 'Generate C-source for IDF\'s eFuse fields. Deprecated alias: "efuse_common_table".',
'order_dependencies': ['reconfigure'],
'options': global_options,
},
'efuse_common_table': {
'callback': build_target,
'hidden': True,
'help': "Generate C-source for IDF's eFuse fields.",
'help': 'Generate C-source for IDF\'s eFuse fields.',
'order_dependencies': ['reconfigure'],
'options': global_options,
},
'efuse-custom-table': {
'callback': build_target,
'help': 'Generate C-source for user\'s eFuse fields. Deprecated alias: "efuse_custom_table".',
'order_dependencies': ['reconfigure'],
'options': global_options,
},
'efuse_custom_table': {
'callback': build_target,
'hidden': True,
'help': 'Generate C-source for user\'s eFuse fields.',
'order_dependencies': ['reconfigure'],
'options': global_options,
},
'show-efuse-table': {
'callback': build_target,
'help': 'Print eFuse table. Deprecated alias: "show_efuse_table".',
'order_dependencies': ['reconfigure'],
'options': global_options,
},
'show_efuse_table': {
'callback': build_target,
'hidden': True,
'help': 'Print eFuse table.',
'order_dependencies': ['reconfigure'],
'options': global_options,
},
'partition-table': {
'callback': build_target,
'help': 'Build only partition table. Deprecated alias: "parititon_table".',
'order_dependencies': ['reconfigure'],
'options': global_options,
},
'partition_table': {
'callback': build_target,
'hidden': True,
'help': 'Build only partition table.',
'order_dependencies': ['reconfigure'],
'options': global_options,