diff options
| author | Mark Hatle <mark.hatle@amd.com> | 2022-11-21 13:07:43 -0800 |
|---|---|---|
| committer | Mark Hatle <mark.hatle@amd.com> | 2022-11-24 07:00:36 -0800 |
| commit | db9994784a14ffd353fd0d4218a5a05fc3976b0d (patch) | |
| tree | 60f7fe7d5eb6395247bd2494374a6813cbe5b34e | |
| parent | 4b86e51887934710d38dd3a2a3b2d5622d044be7 (diff) | |
| download | meta-xilinx-db9994784a14ffd353fd0d4218a5a05fc3976b0d.tar.gz | |
qemu-xilinx-system-native: Add qmp python support to match oe-core
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
3 files changed, 13 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 | } | ||
diff --git a/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2023.1.bb b/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2023.1.bb index 53bea31d..a0b889b7 100644 --- a/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2023.1.bb +++ b/meta-xilinx-core/recipes-devtools/qemu/qemu-xilinx-system-native_2023.1.bb | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | require qemu-system-native-alt.inc | ||
| 1 | require qemu-xilinx-2023.1.inc | 2 | require qemu-xilinx-2023.1.inc |
| 2 | require qemu-xilinx-native.inc | 3 | require qemu-xilinx-native.inc |
| 3 | 4 | ||
| @@ -17,5 +18,9 @@ do_install:append() { | |||
| 17 | rm -rf ${D}${datadir}/qemu/keymaps | 18 | rm -rf ${D}${datadir}/qemu/keymaps |
| 18 | rm -rf ${D}${datadir}/icons | 19 | rm -rf ${D}${datadir}/icons |
| 19 | rm -rf ${D}${includedir}/qemu-plugin.h | 20 | rm -rf ${D}${includedir}/qemu-plugin.h |
| 21 | |||
| 22 | # Install qmp.py to be used with testimage | ||
| 23 | install -d ${D}${libdir}/qemu-python/qmp/ | ||
| 24 | install -D ${S}/python/qemu/qmp/* ${D}${libdir}/qemu-python/qmp/ | ||
| 20 | } | 25 | } |
| 21 | 26 | ||
