diff options
author | Patrick Vacek <patrickvacek@gmail.com> | 2020-01-23 13:25:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 13:25:15 +0100 |
commit | ec4a1094e7bfadf84500dd5de0d5900f14a26c4a (patch) | |
tree | 47d5647d3e67cd403a5d4e45d01f90b0be941a4f /scripts/run-qemu-ota | |
parent | c0498308fdd1388c98bf45d72af0284418170ec0 (diff) | |
parent | 52f60c0dd1948d197cc051baa1b828521679c174 (diff) | |
download | meta-updater-ec4a1094e7bfadf84500dd5de0d5900f14a26c4a.tar.gz |
Merge pull request #637 from advancedtelematic/feat/OTA-2937/non-ostree-build
build and run image without ostree support for qemux86-64
Diffstat (limited to 'scripts/run-qemu-ota')
-rwxr-xr-x | scripts/run-qemu-ota | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/run-qemu-ota b/scripts/run-qemu-ota index 5652797..59301a4 100755 --- a/scripts/run-qemu-ota +++ b/scripts/run-qemu-ota | |||
@@ -13,6 +13,9 @@ def main(): | |||
13 | parser = ArgumentParser(description='Run meta-updater image in qemu') | 13 | parser = ArgumentParser(description='Run meta-updater image in qemu') |
14 | parser.add_argument('imagename', default='core-image-minimal', nargs='?', | 14 | parser.add_argument('imagename', default='core-image-minimal', nargs='?', |
15 | help="Either the name of the bitbake image target, or a path to the image to run") | 15 | help="Either the name of the bitbake image target, or a path to the image to run") |
16 | parser.add_argument('--uboot-enable', default='yes', | ||
17 | help='(yes/no). Determines whether or not to use U-Boot loader for running image, ' | ||
18 | 'if yes then u-boot binary file will be passed as -bios option into QEMU cmd line.') | ||
16 | parser.add_argument('mac', default=None, nargs='?') | 19 | parser.add_argument('mac', default=None, nargs='?') |
17 | parser.add_argument('--dir', default=DEFAULT_DIR, | 20 | parser.add_argument('--dir', default=DEFAULT_DIR, |
18 | help='Path to build directory containing the image and u-boot-qemux86-64.rom') | 21 | help='Path to build directory containing the image and u-boot-qemux86-64.rom') |