summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2021-07-01 20:11:19 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2021-07-01 20:11:19 +0200
commitd83d4a58a21517d43b9f5cddf06d7af3f101c5fd (patch)
tree2498b61a464a501839f3050e096178bfcfc2f395
parentf50029c1916e2608fd683d2f11217193e2a0693a (diff)
We need the conditional for the rpi4 machine. Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Change-Id: I7d510cccd61bf0422525e0d853fdc5b1425ad73f
-rw-r--r--utils/agljobtemplate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/agljobtemplate.py b/utils/agljobtemplate.py
index c25dc9f..c08f8e9 100644
--- a/utils/agljobtemplate.py
+++ b/utils/agljobtemplate.py
@@ -146,7 +146,7 @@ class Agljobtemplate(object):
if machine == "upsquare":
machine_frag_url = "qemux86-64"
build_name = "qemux86-64"
- if ( vcs_branch == "master" or vcs_branch == "koi" ) and (machine == "raspberrypi4" or machine == "raspberrypi4-64"):
+ if ( vcs_branch == "master" or vcs_branch == "lamprey" or vcs_branch == "koi" ) and (machine == "raspberrypi4" or machine == "raspberrypi4-64"):
machine_frag_url = "raspberrypi4-64"
build_name = "raspberrypi4"
job['yocto_machine'] = "raspberrypi4-64"