diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-21 17:56:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-21 17:58:36 +0000 |
commit | 33418ed064fe9cff5b4803f09135a81d9170c189 (patch) | |
tree | 1ee1840bbd1dd5d303550f81c414780771773dc7 /scripts | |
parent | 3a72f6783e142d53d19b37811a854d08d32485ab (diff) | |
download | openembedded-core-33418ed064fe9cff5b4803f09135a81d9170c189.tar.gz openembedded-core-33418ed064fe9cff5b4803f09135a81d9170c189.tar.bz2 openembedded-core-33418ed064fe9cff5b4803f09135a81d9170c189.zip |
runqemu: Also specialcase resolution of '.' to the file's location
Similarly to handling "../", handle "." to resovle to the qemuconf
file's current directory.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index b09cf1ceb8..cd9443595b 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -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): |