aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-05-12 17:42:47 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-05-12 17:43:14 +0200
commit99f8e91d6641505e85528ca6e85b88a36888f9e6 (patch)
treebfc017447250564bc1d0ceae1a428759ecfaf587 /utils
parenta0681f63447c682e506203847e6c5fe12b11cba9 (diff)
Support the rewitten rpi4 machine file layout
The reworked rpi4 board support will build with MACHINE = raspberrypi4-64 to match upstream. This leads to some paths being different on the download server. Thus we need to adapt the scripts. Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Change-Id: Iac1e2bb8c80bb751138969653a5548c6133a665a
Diffstat (limited to 'utils')
-rw-r--r--utils/agljobtemplate.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/agljobtemplate.py b/utils/agljobtemplate.py
index b3763dd..61fc82b 100644
--- a/utils/agljobtemplate.py
+++ b/utils/agljobtemplate.py
@@ -119,6 +119,8 @@ class Agljobtemplate(object):
url_fragment = ''
if (build_type == 'ci'):
url_fragment += changeid + '/' + patchset + '/'
+ if not vcs_branch:
+ vcs_branch = 'master'
elif (build_type == 'snapshot' or build_type == 'weekly' or build_type == 'daily') and (not vcs_branch and not version):
vcs_branch = 'master'
version = 'latest'
@@ -137,6 +139,10 @@ class Agljobtemplate(object):
if machine == "upsquare":
machine_frag_url = "intel-corei7-64"
build_name = "intel-corei7-64"
+ if vcs_branch == "master" and (machine == "raspberrypi4" or machine == "raspberrypi4-64"):
+ machine_frag_url = "raspberrypi4-64"
+ build_name = "raspberrypi4"
+ job['yocto_machine'] = "raspberrypi4-64"
url_fragment += build_name
if (build_type != 'ci'):