Lines Matching +full:checkout +full:- +full:path
3 # SPDX-License-Identifier: Apache-2.0
11 from pathlib import Path
22 WEST_PATCH_SCHEMA_PATH = Path(__file__).parents[1] / "schemas" / "patch-schema.yml"
26 WEST_PATCH_BASE = Path("zephyr") / "patches"
27 WEST_PATCH_YAML = Path("zephyr") / "patches.yml"
29 _WEST_MANIFEST_DIR = Path("WEST_MANIFEST_DIR")
30 _WEST_TOPDIR = Path("WEST_TOPDIR")
52 See "west patch apply --help" for details.
57 See "west patch clean --help" for details.
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
74 date: 2020-04-20
76 merge-pr: https://github.com/zephyrproject-rtos/zephyr/pull/24486
77 issue: https://github.com/zephyrproject-rtos/zephyr/issues/24485
78 merge-status: true
79 merge-commit: af926ae728c78affa89cbc1de811ab4211ed0f69
80 merge-date: 2020-04-27
81 apply-command: git apply
83 Songs about rainbows - why are there so many??
85 possible-muppets-to-ask-for-clarification-with-the-above-question:
86 - Miss Piggy
87 - Gonzo
88 - Fozzie Bear
89 - Animal
94 "-b",
95 "--patch-base",
99 type=Path,
102 "-l",
103 "--patch-yml",
104 help="Path to patches.yml file",
107 type=Path,
110 "-w",
111 "--west-workspace",
115 type=Path,
137 "-r",
138 "--roll-back",
174 manifest_path = self.config.get("manifest.path")
176 self.die("could not retrieve manifest path from west configuration")
178 topdir = Path(self.topdir)
191 if not os.path.isfile(args.patch_yml):
195 west_config = Path(args.west_workspace) / ".west" / "config"
196 if not os.path.isfile(west_config):
230 pth = patch_info["path"]
231 patch_path = os.path.realpath(Path(args.patch_base) / pth)
233 apply_cmd = patch_info["apply-command"]
266 mod_path = Path(args.west_workspace) / mod
293 clean_cmd = yml["clean-command"]
294 checkout_cmd = yml["checkout-command"]
297 self.dbg("no clean or checkout commands specified")
351 mod_path = os.path.realpath(Path(args.west_workspace) / mod)