runqemu: improve when no machine specified

Fixed:
$ runqemu core-image-minimal
[snip]
Exception: FSTYPE is NULL!
[snip]

Get DEPLOY_DIR_IMAGE from "bitbake -e" to make it work.

[YOCTO #10471]

(From OE-Core rev: ca551b72a020782f164703765b97156000b908d2)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Robert Yang 2017-03-16 03:13:24 -07:00 committed by Richard Purdie
parent bbdbdcaf06
commit ac451ea84c
1 changed files with 6 additions and 0 deletions

View File

@ -443,6 +443,12 @@ class BaseConfig(object):
self.set("DEPLOY_DIR_IMAGE", p)
self.check_arg_machine(unknown_arg)
if not (self.get('MACHINE') or self.get('DEPLOY_DIR_IMAGE')):
self.load_bitbake_env()
s = re.search('^DEPLOY_DIR_IMAGE="(.*)"', self.bitbake_e, re.M)
if s:
self.set("DEPLOY_DIR_IMAGE", s.group(1))
def check_kvm(self):
"""Check kvm and kvm-host"""
if not (self.kvm_enabled or self.vhost_enabled):