diff options
author | Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> | 2025-01-30 10:55:46 -0700 |
---|---|---|
committer | Mark Hatle <mark.hatle@amd.com> | 2025-03-30 14:16:15 -0600 |
commit | 92397fd4910c8cb25614fab16e317593c9223650 (patch) | |
tree | 7c3d20d6d36a4352b19c9bf0b0f9995b7065210d | |
parent | b5a776ec18e26562eff67f86ae3b5ff9bf67fc45 (diff) | |
download | meta-xilinx-92397fd4910c8cb25614fab16e317593c9223650.tar.gz |
qemu: Add nativesdk recipe for qemu system multiarch
Add nativesdk recipe for qemu-xilinx-system multiarch which is required
for runqemu when you source sdk scripts and use runqemu script.
Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rw-r--r-- | meta-xilinx-core/recipes-devtools/qemu/nativesdk-qemu-xilinx-multiarch-helper_1.0.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta-xilinx-core/recipes-devtools/qemu/nativesdk-qemu-xilinx-multiarch-helper_1.0.bb b/meta-xilinx-core/recipes-devtools/qemu/nativesdk-qemu-xilinx-multiarch-helper_1.0.bb new file mode 100644 index 00000000..6f94b482 --- /dev/null +++ b/meta-xilinx-core/recipes-devtools/qemu/nativesdk-qemu-xilinx-multiarch-helper_1.0.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | SUMMARY = "SDK Helper scripts for executing a multi-arch instance of AMD QEMU" | ||
2 | LICENSE = "MIT" | ||
3 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" | ||
4 | |||
5 | inherit nativesdk | ||
6 | |||
7 | FILESEXTRAPATHS:prepend := "${THISDIR}/files:" | ||
8 | |||
9 | SRC_URI = "file://qemu-system-aarch64-multiarch" | ||
10 | |||
11 | do_configure[noexec] = "1" | ||
12 | do_compile[noexec] = "1" | ||
13 | |||
14 | do_install() { | ||
15 | install -Dm 0755 ${WORKDIR}/qemu-system-aarch64-multiarch ${D}${bindir}/qemu-system-aarch64-multiarch | ||
16 | } | ||