aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorentin LABBE <clabbe@baylibre.com>2020-01-24 14:15:52 +0100
committerCorentin LABBE <clabbe@baylibre.com>2020-01-24 14:17:40 +0100
commitca60e67b7a71f4935c67ae5cf9a71f0696d7d5f6 (patch)
tree3782678ab132691c5a1268229d82ffde6f446240
parentf1718e424d1a3612b908e7ad8a6169155539eb8e (diff)
SPEC-3132: upsquare does not have dtbicefish_8.99.5icefish/8.99.58.99.5
Asking dtb for upsquare lead to utils/job-prereq.py crash since x86 machines does not have dtb. This patch made upsquare to use FILE_MAP_X86 Bug-AGL: SPEC-3132 Change-Id: I4d33b61719c0d5e3afd83e5d8bb8dc468e26e259 Signed-off-by: Corentin LABBE <clabbe@baylibre.com>
-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 c4c0780..a7b414b 100755
--- a/utils/job-prereq.py
+++ b/utils/job-prereq.py
@@ -68,7 +68,7 @@ def main():
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]
- elif args.machine == "intel-corei7-64":
+ elif args.machine == "intel-corei7-64" or args.machine == "upsquare":
for key in FILE_MAP_X86:
if getattr(args, key):
print job_yaml["actions"][0]["deploy"][key].get("url").split('/')[-1]