* [PATCH 1/2] start_vm: update image types checking
2022-04-27 18:57 [PATCH 0/2] Additions to imagetypes patchset Anton Mikanovich
@ 2022-04-27 18:57 ` Anton Mikanovich
2022-04-27 18:57 ` [PATCH 2/2] meta: fix wic image generation for qemuamd64-bullseye Anton Mikanovich
2022-04-28 6:04 ` [PATCH 0/2] Additions to imagetypes patchset Schmidt, Adriaan
2 siblings, 0 replies; 4+ messages in thread
From: Anton Mikanovich @ 2022-04-27 18:57 UTC (permalink / raw)
To: isar-users; +Cc: adriaan.schmidt, Anton Mikanovich
Image types checking in start_vm should be aligned with code updates.
Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
scripts/start_vm | 8 ++++----
testsuite/start_vm.py | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/scripts/start_vm b/scripts/start_vm
index c114d86..8876e53 100755
--- a/scripts/start_vm
+++ b/scripts/start_vm
@@ -113,8 +113,8 @@ eval $(bitbake -e mc:qemu$ARCH-$DISTRO:isar-image-base | grep "\(^IMAGE_FSTYPES=
# Take first image type for VM if there are several defined
IMAGE_FSTYPES=$(echo "$IMAGE_FSTYPES" | awk '{print $1}')
case "$IMAGE_FSTYPES" in
- ext4-img)
- readonly ROOTFS_IMAGE=$IMAGE_FULLNAME.ext4.img
+ ext4)
+ readonly ROOTFS_IMAGE=$IMAGE_FULLNAME.ext4
eval $(bitbake -e mc:qemu$ARCH-$DISTRO:isar-image-base | grep "^KERNEL_IMAGE=")
eval $(bitbake -e mc:qemu$ARCH-$DISTRO:isar-image-base | grep "^INITRD_IMAGE=")
@@ -130,8 +130,8 @@ case "$IMAGE_FSTYPES" in
-initrd $QINITRD"
KARGS="console=$MACHINE_SERIAL root=/dev/$QEMU_ROOTFS_DEV rw $QEMU_KARGS"
;;
- wic-img)
- readonly ROOTFS_IMAGE=$IMAGE_FULLNAME.wic.img
+ wic)
+ readonly ROOTFS_IMAGE=$IMAGE_FULLNAME.wic
EXTRA_ARGS="$EXTRA_ARGS -snapshot"
;;
*)
diff --git a/testsuite/start_vm.py b/testsuite/start_vm.py
index 708520f..f761a8b 100755
--- a/testsuite/start_vm.py
+++ b/testsuite/start_vm.py
@@ -31,8 +31,8 @@ def format_qemu_cmdline(arch, build, distro, out, pid, enforce_pcbios=False):
image_type = get_bitbake_var(bb_output, 'IMAGE_FSTYPES').split()[0]
deploy_dir_image = get_bitbake_var(bb_output, 'DEPLOY_DIR_IMAGE')
base = 'ubuntu' if distro in ['focal', 'bionic'] else 'debian'
- if image_type == 'ext4-img':
- rootfs_image = 'isar-image-base-' + base + '-' + distro + '-qemu' + arch + '.ext4.img'
+ if image_type == 'ext4':
+ rootfs_image = 'isar-image-base-' + base + '-' + distro + '-qemu' + arch + '.ext4'
kernel_image = deploy_dir_image + '/' + get_bitbake_var(bb_output, 'KERNEL_IMAGE')
initrd_image = get_bitbake_var(bb_output, 'INITRD_IMAGE')
@@ -47,8 +47,8 @@ def format_qemu_cmdline(arch, build, distro, out, pid, enforce_pcbios=False):
extra_args = ['-kernel', kernel_image, '-initrd', initrd_image]
extra_args.extend(kargs)
- elif image_type == 'wic-img':
- rootfs_image = 'isar-image-base-' + base + '-' + distro + '-qemu' + arch + '.wic.img'
+ elif image_type == 'wic':
+ rootfs_image = 'isar-image-base-' + base + '-' + distro + '-qemu' + arch + '.wic'
extra_args = ['-snapshot']
else:
raise ValueError('Invalid image type: ' + str(image_type))
--
2.17.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH 0/2] Additions to imagetypes patchset
2022-04-27 18:57 [PATCH 0/2] Additions to imagetypes patchset Anton Mikanovich
2022-04-27 18:57 ` [PATCH 1/2] start_vm: update image types checking Anton Mikanovich
2022-04-27 18:57 ` [PATCH 2/2] meta: fix wic image generation for qemuamd64-bullseye Anton Mikanovich
@ 2022-04-28 6:04 ` Schmidt, Adriaan
2 siblings, 0 replies; 4+ messages in thread
From: Schmidt, Adriaan @ 2022-04-28 6:04 UTC (permalink / raw)
To: Anton Mikanovich, isar-users
Anton Mikanovich, Mittwoch, 27. April 2022 20:57:
> There are two patches should be placed between imagetypes update and
> ubi/ubifs rebuild patchset to make CI work correctly.
Hi Anton,
Looks good!
I'm appending p1 to the imagetypes series for v4 (which I'm preparing right now).
p2 fixes code I added/broke in the imagetypes patches, so I'll apply the fix
directly at the "source".
Thanks,
Adriaan
>
> Anton Mikanovich (2):
> start_vm: update image types checking
> meta: fix wic image generation for qemuamd64-bullseye
>
> meta-isar/conf/multiconfig/qemuamd64-bullseye.conf | 2 +-
> scripts/start_vm | 8 ++++----
> testsuite/start_vm.py | 8 ++++----
> 3 files changed, 9 insertions(+), 9 deletions(-)
>
> --
> 2.17.1
^ permalink raw reply [flat|nested] 4+ messages in thread