diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2019-06-06 09:41:55 +0000 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2019-06-06 09:43:43 +0000 |
commit | 409a536f9214c84e28534113c841f41cab00d2eb (patch) | |
tree | 0f88f50d523abf13aa135a2c134813d5d74a9523 /utils/job-prereq.py | |
parent | 6f9c7a1f047f52c406109b3704b7ff47c5a474a0 (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
Diffstat (limited to 'utils/job-prereq.py')
-rwxr-xr-x | utils/job-prereq.py | 2 |
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] |