mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 03:03:02 +01:00
runqemu: Also specialcase resolution of '.' to the file's location
Similarly to handling "../", handle "." to resovle to the qemuconf file's current directory. (From OE-Core rev: 9870247d0dc33357988d9636c8ff8db35490752e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 33418ed064fe9cff5b4803f09135a81d9170c189) Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -728,6 +728,8 @@ class BaseConfig(object):
|
||||
k_upper = k.upper()
|
||||
if v.startswith("../"):
|
||||
v = os.path.abspath(os.path.dirname(self.qemuboot) + "/" + v)
|
||||
elif v == ".":
|
||||
v = os.path.dirname(self.qemuboot)
|
||||
self.set(k_upper, v)
|
||||
|
||||
def validate_paths(self):
|
||||
|
||||
Reference in New Issue
Block a user