diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2020-05-04 19:42:19 +0200 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2020-05-04 19:43:54 +0200 |
commit | a0681f63447c682e506203847e6c5fe12b11cba9 (patch) | |
tree | 236dea72162b8af039aca813233fa8a931de95a1 | |
parent | 3409f9416f64b70d3548bcb7dab0ad4f47629035 (diff) |
SPEC-3210: use the new rootfs name for qemu
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-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 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): |