From: Paul Eggleton Date: Wed, 23 Sep 2015 10:05:24 +0000 (+0100) Subject: devtool: runqemu: avoid recipe parse X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~28815 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=84172ff7b325f081dba6430fd27f12e3745838b5;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git devtool: runqemu: avoid recipe parse We only need the base configuration to get the variable values we want to get here, there's no need to parse recipes / load the cache. Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/devtool/runqemu.py b/scripts/lib/devtool/runqemu.py index 4d08d8c3dd5..5282afba68e 100644 --- a/scripts/lib/devtool/runqemu.py +++ b/scripts/lib/devtool/runqemu.py @@ -29,7 +29,7 @@ logger = logging.getLogger('devtool') def runqemu(args, config, basepath, workspace): """Entry point for the devtool 'runqemu' subcommand""" - tinfoil = setup_tinfoil(basepath=basepath) + tinfoil = setup_tinfoil(config_only=True, basepath=basepath) machine = tinfoil.config_data.getVar('MACHINE', True) bindir_native = tinfoil.config_data.getVar('STAGING_BINDIR_NATIVE', True) tinfoil.shutdown()