diff options
author | Jagadeesh Krishnanjanappa <jkrishnanjanappa@mvista.com> | 2018-08-14 20:05:29 +0530 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-15 09:44:33 +0100 |
commit | 138637e2b81bf2e2f0a797fedbb34cdc134c7a2b (patch) | |
tree | 0f6bbe03ef185a0625c360c01b3c0790a0bae26a /scripts | |
parent | 6c5d4f989d377fea2c95bd04e7a04776753bf434 (diff) | |
download | poky-138637e2b81bf2e2f0a797fedbb34cdc134c7a2b.tar.gz |
runqemu: exit gracefully with an error message if qemu system is not evaluated
It solves below error:
-- snip --
return 'qemu-system-%s' % qbsys
UnboundLocalError: local variable 'qbsys' referenced before assignment
-- snip --
[YOCTO #12846]
(From OE-Core rev: 519273f54c0b8a6fff36afeb7646d8e37717be22)
Signed-off-by: Jagadeesh Krishnanjanappa <jkrishnanjanappa@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index f52b9a82ea..409d17c648 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
@@ -1118,6 +1118,11 @@ class BaseConfig(object): | |||
1118 | qbsys = 'riscv64' | 1118 | qbsys = 'riscv64' |
1119 | elif mach == 'qemuriscv32': | 1119 | elif mach == 'qemuriscv32': |
1120 | qbsys = 'riscv32' | 1120 | qbsys = 'riscv32' |
1121 | else: | ||
1122 | logger.error("Unable to determine QEMU PC System emulator for %s machine." % mach) | ||
1123 | logger.error("As %s is not among valid QEMU machines such as," % mach) | ||
1124 | logger.error("qemux86-64, qemux86, qemuarm64, qemuarm, qemumips64, qemumips64el, qemumipsel, qemumips, qemuppc") | ||
1125 | raise RunQemuError("Set qb_system_name with suitable QEMU PC System emulator in .*qemuboot.conf.") | ||
1121 | 1126 | ||
1122 | return 'qemu-system-%s' % qbsys | 1127 | return 'qemu-system-%s' % qbsys |
1123 | 1128 | ||