diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2020-05-04 19:42:19 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-05-04 19:59:08 +0200 |
commit | dfddbe9b5dbaad8d6e320f79494b79c2304c58ed (patch) | |
tree | ca73e4d52657fa5d1b3b80124c3cf0caaa2f6832 | |
parent | 8e8644dacbe7561d7de29279d5e04110e0a69c53 (diff) |
SPEC-3210: use the new rootfs name for qemuicefish_9.0.4icefish_9.0.3icefish_9.0.2icefish/9.0.4icefish/9.0.3icefish/9.0.29.0.49.0.39.0.2icefish
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): |