aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorentin LABBE <clabbe@baylibre.com>2019-06-06 09:41:55 +0000
committerCorentin LABBE <clabbe@baylibre.com>2019-06-06 09:43:43 +0000
commit409a536f9214c84e28534113c841f41cab00d2eb (patch)
tree0f88f50d523abf13aa135a2c134813d5d74a9523
parent6f9c7a1f047f52c406109b3704b7ff47c5a474a0 (diff)
Add support for qemuarm/qemuarm64 in utils/job-prereq.py
This patchs permits utils/job-prereq.py to work with qemuarm/qemuarm64 Bug-AGL: SPEC-2376 Signed-off-by: Corentin LABBE <clabbe@baylibre.com> Change-Id: Ie8615a9ab4d1f0053afc098db508814e6aad1bf7
-rwxr-xr-xutils/job-prereq.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/job-prereq.py b/utils/job-prereq.py
index 5ea745b..7f3b7e1 100755
--- a/utils/job-prereq.py
+++ b/utils/job-prereq.py
@@ -64,7 +64,7 @@ def main():
machine=args.machine)
job_yaml = yaml.load(job)
- if args.machine == "qemux86-64":
+ if args.machine == "qemux86-64" or args.machine == "qemuarm" or args.machine == "qemuarm64":
for key in FILE_MAP_QEMU:
if getattr(args, key):
print job_yaml["actions"][0]["deploy"]["images"][FILE_MAP_QEMU[key]].get("url").split('/')[-1]