diff options
author | Patrick Vacek <patrickvacek@gmail.com> | 2019-11-29 11:35:21 +0100 |
---|---|---|
committer | Laurent Bonnans <laurent.bonnans@here.com> | 2019-12-12 16:26:51 +0100 |
commit | ba51b5a9d0558a8853cd0bc0753d36d235bb686a (patch) | |
tree | 76088529d8621aa38fedd7ed710637cb6290bbbb /lib | |
parent | bbc10ac613b2ddfcd4e23ada2e745ced1fb53f4b (diff) | |
download | meta-updater-ba51b5a9d0558a8853cd0bc0753d36d235bb686a.tar.gz |
Add --bootloader flag to specify path to a custom u-boot rom.
Also should work for other bootloaders. This is intended to help with
keeping around older versions of images with a similarly old bootloader.
Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/oeqa/selftest/cases/testutils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/oeqa/selftest/cases/testutils.py b/lib/oeqa/selftest/cases/testutils.py index 802d665..ea7781b 100644 --- a/lib/oeqa/selftest/cases/testutils.py +++ b/lib/oeqa/selftest/cases/testutils.py | |||
@@ -33,6 +33,7 @@ def qemu_boot_image(imagename, **kwargs): | |||
33 | # subdirectory. | 33 | # subdirectory. |
34 | args.dir = 'tmp/deploy/images' | 34 | args.dir = 'tmp/deploy/images' |
35 | args.efi = kwargs.get('efi', False) | 35 | args.efi = kwargs.get('efi', False) |
36 | args.bootloader = kwargs.get('bootloader', None) | ||
36 | args.machine = kwargs.get('machine', None) | 37 | args.machine = kwargs.get('machine', None) |
37 | args.mem = kwargs.get('mem', '128M') | 38 | args.mem = kwargs.get('mem', '128M') |
38 | qemu_use_kvm = get_bb_var("QEMU_USE_KVM") | 39 | qemu_use_kvm = get_bb_var("QEMU_USE_KVM") |