blob: daff5ffc9cc8e544466a9609e7567b4b61bb5c29 [file] [log] [blame]
QEMU_TARGETS = "aarch64 arm microblaze microblazeel"
require recipes-devtools/qemu/qemu.inc
SUMMARY = "Xilinx's fork of a fast open source processor emulator"
HOMEPAGE = "https://github.com/xilinx/qemu/"
LIC_FILES_CHKSUM = " \
file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \
file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913 \
"
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
PV = "${XILINX_QEMU_VERSION}-xilinx-${XILINX_RELEASE_VERSION}+git${SRCPV}"
BRANCH ?= ""
REPO ?= "git://github.com/Xilinx/qemu.git;protocol=https"
BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}"
SRC_URI = "${REPO};${BRANCHARG}"
S = "${WORKDIR}/git"
# Disable KVM completely
PACKAGECONFIG_remove = "kvm"
# Enable libgcrypt
PACKAGECONFIG_append = " gcrypt"
DISABLE_STATIC_pn-${PN} = ""
PTEST_ENABLED = ""
# append a suffix dir, to allow multiple versions of QEMU to be installed
EXTRA_OECONF_append = " \
--bindir=${bindir}/qemu-xilinx \
--libexecdir=${libexecdir}/qemu-xilinx \
"
do_configure_prepend() {
# rewrite usage of 'libgcrypt-config' with 'pkg-config libgcrypt'
sed -r -i 's/libgcrypt-config(\s*--)/pkg-config libgcrypt\1/g' ${S}/configure
}
do_install_append() {
# Prevent QA warnings about installed ${localstatedir}/run
if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi
}