From b8a71b46fb428578691cdceeaa73812db7d9fe7f Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 12 Sep 2023 08:38:19 -0700 Subject: [PATCH] Switch scripts over to use main branch This will be needed to switch over to main branch in coreboot Change-Id: I90fadf2352d56074ce8b58d559a73b0c53fac14b Signed-off-by: Stefan Reinauer Reviewed-on: https://review.coreboot.org/c/coreboot/+/75782 Reviewed-by: Patrick Georgi Tested-by: build bot (Jenkins) --- util/scripts/cross-repo-cherrypick | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/scripts/cross-repo-cherrypick b/util/scripts/cross-repo-cherrypick index 1a174a9772..b27ff4375a 100755 --- a/util/scripts/cross-repo-cherrypick +++ b/util/scripts/cross-repo-cherrypick @@ -4,7 +4,7 @@ # SPDX-License-Identifier: GPL-2.0-only # Adapt to your remote branch: -BRANCH="origin/master" +BRANCH="origin/main" # When pulling in patches from another tree from a gerrit repository, # do the following at the end of a larger cherry-pick series: @@ -24,7 +24,7 @@ commit_message() { ORIGIN_HOST=$( commit_message |grep "^Reviewed-on: " |head -1 |cut -d/ -f3 ) case "${ORIGIN_HOST}" in review.coreboot.org) - BRANCH="origin/master" + BRANCH="origin/main" MESSAGE_PREFIX="UPSTREAM: " ;; chromium-review.googlesource.com)