Searched refs:module_path (Results 1 – 2 of 2) sorted by relevance
/Zephyr-Core-2.7.6/scripts/ |
D | zephyr_module.py | 102 def validate_setting(setting, module_path, filename=None): argument 105 checkfile = os.path.join(module_path, setting, filename) 107 checkfile = os.path.join(module_path, setting) 114 module_path = PurePath(module) 115 module_yml = module_path.joinpath('zephyr/module.yml') 131 meta['name'] = meta.get('name', module_path.name) 135 if Path(module_path.joinpath('zephyr/CMakeLists.txt')).is_file() and \ 136 Path(module_path.joinpath('zephyr/Kconfig')).is_file(): 137 return {'name': module_path.name, 138 'name-sanitized': re.sub('[^a-zA-Z0-9]', '_', module_path.name), [all …]
|
/Zephyr-Core-2.7.6/cmake/ |
D | zephyr_module.cmake | 102 string(REGEX REPLACE "\".*\":\"(.*)\":\".*\"" "\\1" module_path ${module}) 109 set(ZEPHYR_${MODULE_NAME_UPPER}_MODULE_DIR ${module_path})
|