mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
* if you don't have QEMU_USE_KVM in local.conf it fails with:
2023-03-12 18:06:29,591 - oe-selftest - DEBUG - Checking if qemux86-64 is not this MACHINE
2023-03-12 18:06:29,594 - oe-selftest - INFO - ... ERROR
2023-03-12 18:06:29,594 - oe-selftest - INFO - Traceback (most recent call last):
File "/OE/build/poky/meta/lib/oeqa/core/decorator/__init__.py", line 35, in wrapped_f
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/OE/build/poky/meta/lib/oeqa/selftest/cases/efibootpartition.py", line 18, in test_boot_efi
if oe.types.qemu_use_kvm(self.td['QEMU_USE_KVM'], self.td["TARGET_ARCH"]):
~~~~~~~^^^^^^^^^^^^^^^^
KeyError: 'QEMU_USE_KVM'
[YOCTO #12937]
(From OE-Core rev: 7c32ca2f91beb98769c89470b37f06cb4b99aebb)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
# Based on runqemu.py test file
|
|
#
|
|
# Copyright (c) 2017 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
from oeqa.selftest.case import OESelftestTestCase
|
|
from oeqa.utils.commands import bitbake, runqemu
|
|
from oeqa.core.decorator.data import skipIfNotMachine
|
|
import oe.types
|
|
|
|
class GenericEFITest(OESelftestTestCase):
|
|
"""EFI booting test class"""
|
|
@skipIfNotMachine("qemux86-64", "test is qemux86-64 specific currently")
|
|
def test_boot_efi(self):
|
|
cmd = "runqemu nographic serial wic ovmf"
|
|
if oe.types.qemu_use_kvm(self.td.get('QEMU_USE_KVM', 0), self.td["TARGET_ARCH"]):
|
|
cmd += " kvm"
|
|
image = "core-image-minimal"
|
|
|
|
self.write_config("""
|
|
EFI_PROVIDER = "systemd-boot"
|
|
IMAGE_FSTYPES:pn-%s:append = " wic"
|
|
MACHINE_FEATURES:append = " efi"
|
|
WKS_FILE = "efi-bootdisk.wks.in"
|
|
IMAGE_INSTALL:append = " grub-efi systemd-boot kernel-image-bzimage"
|
|
"""
|
|
% (image))
|
|
|
|
bitbake(image + " ovmf")
|
|
with runqemu(image, ssh=False, launch_cmd=cmd) as qemu:
|
|
self.assertTrue(qemu.runner.logged, "Failed: %s" % cmd)
|