mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 15:44:34 +02:00
kconfig: ignore nonexistent new names
This commit is contained in:
@@ -119,8 +119,11 @@ class DeprecatedOptions(object):
|
|||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
# otherwise if any of the nodes associated with the option was visible
|
try:
|
||||||
return any(visibility.visible(node) for node in config.syms[opt].nodes)
|
# otherwise if any of the nodes associated with the option was visible
|
||||||
|
return any(visibility.visible(node) for node in config.syms[opt].nodes)
|
||||||
|
except KeyError:
|
||||||
|
return False
|
||||||
|
|
||||||
if len(self.r_dic) > 0:
|
if len(self.r_dic) > 0:
|
||||||
with open(path_output, 'a') as f_o:
|
with open(path_output, 'a') as f_o:
|
||||||
|
Reference in New Issue
Block a user