Skip to content

Commit 165a784

Browse files
mengdonglinlgirdwood
authored andcommitted
xtensa-build-zephyr.py: switch default to sof/stable-v2.2
The release branch is created for SOF v2.2 in the cloned Zephyr repo: https://github.com/thesofproject/zephyr/tree/sof/stable-v2.2 This points to unmodified Zephyr upstream tag v3.1.0-rc3 Set default Zephyr URL to this cloned repo and switch default branch to sof/stable-v2.2 Signed-off-by: mengdonglin <mengdong.lin@intel.com>
1 parent c17121b commit 165a784

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/xtensa-build-zephyr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def parse_args():
144144
help="Initial Zephyr git ref for the -c option."
145145
" Can be a branch, tag, full SHA1 in a fork")
146146
parser.add_argument("-u", "--url", required=False,
147-
default="https://github.com/zephyrproject-rtos/zephyr/",
147+
default="https://github.com/thesofproject/zephyr/",
148148
help="URL to clone Zephyr from")
149149
mode_group = parser.add_mutually_exclusive_group()
150150
mode_group.add_argument("-p", "--west_path", required=False, type=pathlib.Path,
@@ -197,7 +197,7 @@ def parse_args():
197197
if args.zephyr_ref and not args.clone_mode:
198198
raise RuntimeError(f"Argument -z without -c makes no sense")
199199
if args.clone_mode and not args.zephyr_ref:
200-
args.zephyr_ref = "main" # set default name for -z if -c specified
200+
args.zephyr_ref = "sof/stable-v2.2" # set default name for -z if -c specified
201201

202202
if args.west_path: # let the user provide an already existing zephyrproject/ anywhere
203203
west_top = pathlib.Path(args.west_path)

0 commit comments

Comments
 (0)