diff options
author | Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com> | 2020-02-19 17:15:20 -0800 |
---|---|---|
committer | Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com> | 2020-02-19 17:15:24 -0800 |
commit | 13a3e5565c518df426439275c1ec4b80c93255d5 (patch) | |
tree | 5cbfd8afb0fee3d7b81eb931dab7bed85c1ae141 | |
parent | 2c74db8440dd29d87d99fd9c77e93b2df798b726 (diff) | |
download | meta-xilinx-13a3e5565c518df426439275c1ec4b80c93255d5.tar.gz |
qemu-system-aarch64-multiarch: Update the binpath for qemu targets
Update the binpath for qemu-system-microblazeel and qemu-system-aarch64.
Earlier the targets were located under
recipe-sysroots-native/usr/bin/qemu-xilinx directory, now the targets are
located under recipe-sysroots-native/usr/bin
Signed-off-by: Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>
-rw-r--r-- | meta-xilinx-bsp/recipes-devtools/qemu/files/qemu-system-aarch64-multiarch | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-xilinx-bsp/recipes-devtools/qemu/files/qemu-system-aarch64-multiarch b/meta-xilinx-bsp/recipes-devtools/qemu/files/qemu-system-aarch64-multiarch index 6f7fb522..0f2b67e6 100644 --- a/meta-xilinx-bsp/recipes-devtools/qemu/files/qemu-system-aarch64-multiarch +++ b/meta-xilinx-bsp/recipes-devtools/qemu/files/qemu-system-aarch64-multiarch | |||
@@ -6,8 +6,9 @@ import subprocess | |||
6 | import sys | 6 | import sys |
7 | import tempfile | 7 | import tempfile |
8 | import shutil | 8 | import shutil |
9 | from pathlib import Path | ||
9 | 10 | ||
10 | binpath = os.path.dirname(os.path.abspath(__file__)) | 11 | binpath = str(Path(os.path.dirname(os.path.abspath(__file__))).parent) |
11 | mach_path = tempfile.mkdtemp() | 12 | mach_path = tempfile.mkdtemp() |
12 | 13 | ||
13 | 14 | ||