Lines Matching refs:config
34 'config.gni' in os.listdir(kernel_path)
53 kernel_config = os.path.join(kernel_path, 'config.gni')
59 def match_kernel(config: str, kernel: str, version: str):
63 with open(config, 'rt', encoding='utf-8') as config_file:
70 def get_kernel_info(config: str):
74 with open(config, 'rt', encoding='utf-8') as config_file:
80 f'not found in {config}', '0005')
94 config = os.path.join(config_path, 'config.gni')
95 if not os.path.isfile(config):
98 with open(config, 'rt', encoding='utf-8') as config_file:
103 f'board_toolchain_type is None in {config}', '0007')