aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorentin LABBE <clabbe@baylibre.com>2020-05-04 19:42:19 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-05-04 19:59:08 +0200
commitdfddbe9b5dbaad8d6e320f79494b79c2304c58ed (patch)
treeca73e4d52657fa5d1b3b80124c3cf0caaa2f6832
parent8e8644dacbe7561d7de29279d5e04110e0a69c53 (diff)
When changing the name of the rootfs of qemu from ramdisk to rootvd, utils/job-prereq.py was not handled. This patch fix it. Bug-AGL: SPEC-3210 Change-Id: I17c5c52d4b5f605fc043deb96694f7935b5dc9f8 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 a7b414b..c04959b 100755
--- a/utils/job-prereq.py
+++ b/utils/job-prereq.py
@@ -22,7 +22,7 @@ FILE_MAP_X86 = {
# Mapping for qemu between command line QEMU args and LAVA yaml template file names
FILE_MAP_QEMU = {
"kernel": "kernel",
- "initrd": "ramdisk",
+ "initrd": "rootvd",
}
def parse_cmdline(machines):