diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2023-06-10 12:29:29 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2023-09-11 06:35:43 +0000 |
commit | 5db03ed14cd2afde92926e8761e5ee6f8421e634 (patch) | |
tree | 52b6acedec7bf61c0c2f758da8e143a4f9ad112b | |
parent | dc75d3e6c183811ffd99bc943256a6713250fc30 (diff) |
Switch board_status.sh to use main branch
... so we can switch coreboot over.
Change-Id: Ib0487014fd49829e0d021533b04df9e8bd1a757a
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75779
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nicholas Chin <nic.c3.14@gmail.com>
-rwxr-xr-x | util/board_status/getrevision.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/board_status/getrevision.sh b/util/board_status/getrevision.sh index 041f6f2013..ced20fc451 100755 --- a/util/board_status/getrevision.sh +++ b/util/board_status/getrevision.sh @@ -123,7 +123,7 @@ tagged_revision() { upstream_revision() { local r= - r=$(git log remotes/origin/master -1 --format=format:%h) + r=$(git log remotes/origin/main -1 --format=format:%h) if [ -z "$r" ]; then r="unknown" # default to unknown |