summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@amd.com>2022-11-21 13:07:43 -0800
committerMark Hatle <mark.hatle@amd.com>2023-04-07 17:50:36 -0700
commit6ed9b2c54feec44e3c0bc1b2e082e464448c8b5f (patch)
treef8c2636c8e51cde98cb57ed94aa60ee2491814f1
parent9e20d317d58f5f36728982164114926b9528642c (diff)
downloadmeta-xilinx-6ed9b2c54feec44e3c0bc1b2e082e464448c8b5f.tar.gz
qemu-xilinx-system-native: Add qmp python support to match oe-core
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rw-r--r--meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2022.1.bb5
-rw-r--r--meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2022.2.bb5
2 files changed, 8 insertions, 2 deletions
diff --git a/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2022.1.bb b/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2022.1.bb
index 6afddb87..9a420021 100644
--- a/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2022.1.bb
+++ b/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2022.1.bb
@@ -17,5 +17,8 @@ do_install:append() {
17 rm -rf ${D}${datadir}/qemu/keymaps 17 rm -rf ${D}${datadir}/qemu/keymaps
18 rm -rf ${D}${datadir}/icons 18 rm -rf ${D}${datadir}/icons
19 rm -rf ${D}${includedir}/qemu-plugin.h 19 rm -rf ${D}${includedir}/qemu-plugin.h
20}
21 20
21 # Install qmp.py to be used with testimage
22 install -d ${D}${libdir}/qemu-python/qmp/
23 install -D ${S}/python/qemu/qmp/* ${D}${libdir}/qemu-python/qmp/
24}
diff --git a/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2022.2.bb b/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2022.2.bb
index 924ccd6f..3a8eadc4 100644
--- a/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2022.2.bb
+++ b/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2022.2.bb
@@ -17,5 +17,8 @@ do_install:append() {
17 rm -rf ${D}${datadir}/qemu/keymaps 17 rm -rf ${D}${datadir}/qemu/keymaps
18 rm -rf ${D}${datadir}/icons 18 rm -rf ${D}${datadir}/icons
19 rm -rf ${D}${includedir}/qemu-plugin.h 19 rm -rf ${D}${includedir}/qemu-plugin.h
20}
21 20
21 # Install qmp.py to be used with testimage
22 install -d ${D}${libdir}/qemu-python/qmp/
23 install -D ${S}/python/qemu/qmp/* ${D}${libdir}/qemu-python/qmp/
24}