summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorlbonn <lbonn@users.noreply.github.com>2019-12-16 14:04:59 +0100
committerGitHub <noreply@github.com>2019-12-16 14:04:59 +0100
commit22d4dcc974450a22a55a788d2eb6db3f4b182fc2 (patch)
tree6ba27e2590ed5eeb4f6388815d765130a7110d1c /scripts
parent6ddc750def0dcb1a6efbc34145a9b647882310ac (diff)
parent6a9999384ebe41062dda062a6ed68ed459fea0bc (diff)
downloadmeta-updater-22d4dcc974450a22a55a788d2eb6db3f4b182fc2.tar.gz
Warrior backport for 2019.11 (#648)
Warrior backport for 2019.11
Diffstat (limited to 'scripts')
-rw-r--r--scripts/qemucommand.py2
-rwxr-xr-xscripts/run-qemu-ota1
2 files changed, 3 insertions, 0 deletions
diff --git a/scripts/qemucommand.py b/scripts/qemucommand.py
index 9b23c54..cef434d 100644
--- a/scripts/qemucommand.py
+++ b/scripts/qemucommand.py
@@ -58,6 +58,8 @@ class QemuCommand(object):
58 if args.efi: 58 if args.efi:
59 self.bios = 'OVMF.fd' 59 self.bios = 'OVMF.fd'
60 else: 60 else:
61 if args.bootloader:
62 uboot_path = args.bootloader
61 uboot_path = abspath(join(args.dir, self.machine, 'u-boot-qemux86-64.rom')) 63 uboot_path = abspath(join(args.dir, self.machine, 'u-boot-qemux86-64.rom'))
62 if self.overlay: 64 if self.overlay:
63 new_uboot_path = self.overlay + '.u-boot.rom' 65 new_uboot_path = self.overlay + '.u-boot.rom'
diff --git a/scripts/run-qemu-ota b/scripts/run-qemu-ota
index 232ee11..e2a4103 100755
--- a/scripts/run-qemu-ota
+++ b/scripts/run-qemu-ota
@@ -20,6 +20,7 @@ def main():
20 help='Boot using UEFI rather than U-Boot. This requires the image to be built with ' + 20 help='Boot using UEFI rather than U-Boot. This requires the image to be built with ' +
21 'OSTREE_BOOTLOADER = "grub" and OVMF.fd firmware to be installed (try "apt install ovmf")', 21 'OSTREE_BOOTLOADER = "grub" and OVMF.fd firmware to be installed (try "apt install ovmf")',
22 action='store_true') 22 action='store_true')
23 parser.add_argument('--bootloader', default=None, help="Path to bootloader, e.g. a u-boot ROM")
23 parser.add_argument('--machine', default=None, help="Target MACHINE") 24 parser.add_argument('--machine', default=None, help="Target MACHINE")
24 kvm_group = parser.add_argument_group() 25 kvm_group = parser.add_argument_group()
25 kvm_group.add_argument('--force-kvm', help='Force use of KVM (default is to autodetect)', 26 kvm_group.add_argument('--force-kvm', help='Force use of KVM (default is to autodetect)',