We need to validate and ensure all paths are set regardless of
whether runqemu was invoked with a .qemuboot.conf file or
otherwise. Split this logic out into a separate method called
during check_and_set()
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
def check_and_set(self):
"""Check configs sanity and set when needed"""
+ self.validate_paths()
check_tun()
# Check audio
if self.audio_enabled:
k_upper = k.upper()
self.set(k_upper, v)
+ def validate_paths(self):
+ """Ensure all relevant path variables are set"""
# When we're started with a *.qemuboot.conf arg assume that image
# artefacts are relative to that file, rather than in whatever
# directory DEPLOY_DIR_IMAGE in the conf file points to.