Lines Matching full:patch
22 WEST_PATCH_SCHEMA_PATH = Path(__file__).parents[1] / "schemas" / "patch-schema.yml"
33 class Patch(WestCommand): class
36 "patch",
51 Run "west patch apply" to apply patches.
52 See "west patch apply --help" for details.
56 Run "west patch clean" to clean patches.
57 See "west patch clean --help" for details.
61 Run "west patch list" to list patches.
62 See "west patch list --help" for details.
66 The patches.yml syntax is described in "scripts/schemas/patch-schema.yml".
69 - path: zephyr/kernel-pipe-fix-not-k-no-wait-and-ge-min-xfer-bytes.patch
95 "--patch-base",
96 help="Directory containing patch files",
103 "--patch-yml",
132 Run "west patch apply" to apply patches.
139 help="Roll back if any patch fails to apply",
152 Run "west patch clean" to clean patches.
165 Run "west patch list" to list patches.
236 self.dbg(f"reading patch file {pth}")
247 self.dbg("checking patch integrity... ", end="")
290 self.die(f"failed to apply patch {pth}")
304 for mod, mod_path in Patch.get_mod_paths(args, yml).items():