Lines Matching full:path
10 from pathlib import Path
14 MODULE_PATH = Path(Path(__file__).resolve().parents[2], "module.yml")
15 SUBMODULES = Path(Path(__file__).resolve().parents[1], "submodules.txt")
29 - path: lib/{SOC}/{FILENAME}
33 license-path: zephyr/blobs/license.txt
44 path = os.path.dirname(os.path.abspath(__file__))
48 folder = Path(path, "temp", git_dir)
51 cmd_exec(("git", "clone", git_url, folder, "--quiet"), cwd=path)
53 cmd_exec(("git", "-C", folder, "fetch"), cwd=path)
54 cmd_exec(("git", "-C", folder, "checkout", git_rev, "--quiet"), cwd=path)
59 path = os.path.dirname(os.path.abspath(__file__))
60 folder = Path(path, "temp")
64 def path_leaf(path): argument
65 head, tail = ntpath.split(path)
69 def get_file_sha256(path): argument
70 with open(path,"rb") as f:
79 path = os.path.dirname(os.path.abspath(__file__))
85 folder = Path(path, "temp", git_dir, s)
86 pathlist = Path(folder).glob('**/*.a')