Change-Id: Ib2753d3a45d23f63586e158ca307a490060cf40e
Signed-off-by: wanchao-xu <wanchao.xu@samsung.com>
# qemu_emulator is a special case, we can't use find_binary_path
# qemu emulator should be a statically-linked executable file
- arm_binary, node = get_qemu_arm_binary(arch)
+ try:
+ arm_binary, node = get_qemu_arm_binary(arch)
+ except CreatorError as err:
+ msger.error(err)
qemu_emulator = "/usr/bin/%s" % arm_binary
if not os.path.exists(rootdir + "/usr/bin"):