Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "Fast open source processor emulator" |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 2 | DESCRIPTION = "QEMU is a hosted virtual machine monitor: it emulates the \ |
| 3 | machine's processor through dynamic binary translation and provides a set \ |
| 4 | of different hardware and device models for the machine, enabling it to run \ |
| 5 | a variety of guest operating systems" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 6 | HOMEPAGE = "http://qemu.org" |
| 7 | LICENSE = "GPLv2 & LGPLv2.1" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 8 | |
| 9 | RDEPENDS_${PN}-ptest = "bash make" |
| 10 | |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 11 | require qemu-targets.inc |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 12 | inherit pkgconfig ptest |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 13 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 14 | LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 15 | file://COPYING.LIB;endline=24;md5=8c5efda6cf1e1b03dcfd0e6c0d271c7f" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 16 | |
| 17 | SRC_URI = "https://download.qemu.org/${BPN}-${PV}.tar.xz \ |
| 18 | file://powerpc_rom.bin \ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 19 | file://run-ptest \ |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 20 | file://0001-qemu-Add-missing-wacom-HID-descriptor.patch \ |
| 21 | file://0002-Add-subpackage-ptest-which-runs-all-unit-test-cases-.patch \ |
| 22 | file://0003-qemu-Add-addition-environment-space-to-boot-loader-q.patch \ |
| 23 | file://0004-qemu-disable-Valgrind.patch \ |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 24 | file://0005-qemu-native-set-ld.bfd-fix-cflags-and-set-some-envir.patch \ |
| 25 | file://0006-chardev-connect-socket-to-a-spawned-command.patch \ |
| 26 | file://0007-apic-fixup-fallthrough-to-PIC.patch \ |
| 27 | file://0008-linux-user-Fix-webkitgtk-hangs-on-32-bit-x86-target.patch \ |
| 28 | file://0009-Fix-webkitgtk-builds.patch \ |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 29 | file://0010-configure-Add-pkg-config-handling-for-libgcrypt.patch \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 30 | file://0001-Add-enable-disable-udev.patch \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 31 | file://0001-qemu-Do-not-include-file-if-not-exists.patch \ |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 32 | file://find_datadir.patch \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 33 | " |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 34 | UPSTREAM_CHECK_REGEX = "qemu-(?P<pver>\d+(\.\d+)+)\.tar" |
| 35 | |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 36 | SRC_URI[sha256sum] = "c9174eb5933d9eb5e61f541cd6d1184cd3118dfe4c5c4955bc1bdc4d390fa4e5" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 37 | |
| 38 | COMPATIBLE_HOST_mipsarchn32 = "null" |
| 39 | COMPATIBLE_HOST_mipsarchn64 = "null" |
| 40 | |
| 41 | do_install_append() { |
| 42 | # Prevent QA warnings about installed ${localstatedir}/run |
| 43 | if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi |
| 44 | } |
| 45 | |
| 46 | do_compile_ptest() { |
| 47 | make buildtest-TESTS |
| 48 | } |
| 49 | |
| 50 | do_install_ptest() { |
| 51 | cp -rL ${B}/tests ${D}${PTEST_PATH} |
| 52 | find ${D}${PTEST_PATH}/tests -type f -name "*.[Sshcod]" | xargs -i rm -rf {} |
| 53 | |
| 54 | cp ${S}/tests/Makefile.include ${D}${PTEST_PATH}/tests |
| 55 | # Don't check the file genreated by configure |
| 56 | sed -i -e '/wildcard config-host.mak/d' \ |
| 57 | -e '$ {/endif/d}' ${D}${PTEST_PATH}/tests/Makefile.include |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 58 | sed -i -e 's,${HOSTTOOLS_DIR}/python3,${bindir}/python3,' \ |
| 59 | ${D}/${PTEST_PATH}/tests/qemu-iotests/common.env |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 60 | sed -i -e "1s,#!/usr/bin/bash,#!${base_bindir}/bash," ${D}${PTEST_PATH}/tests/data/acpi/disassemle-aml.sh |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 61 | } |
| 62 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 63 | # QEMU_TARGETS is overridable variable |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 64 | QEMU_TARGETS ?= "arm aarch64 i386 mips mipsel mips64 mips64el ppc ppc64 ppc64le riscv32 riscv64 sh4 x86_64" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 65 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 66 | EXTRA_OECONF = " \ |
| 67 | --prefix=${prefix} \ |
| 68 | --bindir=${bindir} \ |
| 69 | --includedir=${includedir} \ |
| 70 | --libdir=${libdir} \ |
| 71 | --mandir=${mandir} \ |
| 72 | --datadir=${datadir} \ |
| 73 | --docdir=${docdir}/${BPN} \ |
| 74 | --sysconfdir=${sysconfdir} \ |
| 75 | --libexecdir=${libexecdir} \ |
| 76 | --localstatedir=${localstatedir} \ |
| 77 | --with-confsuffix=/${BPN} \ |
| 78 | --disable-strip \ |
| 79 | --disable-werror \ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 80 | --extra-cflags='${CFLAGS}' \ |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 81 | --extra-ldflags='${LDFLAGS}' \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 82 | --with-git=/bin/false \ |
| 83 | --disable-git-update \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 84 | ${PACKAGECONFIG_CONFARGS} \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 85 | " |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 86 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 87 | export LIBTOOL="${HOST_SYS}-libtool" |
| 88 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 89 | B = "${WORKDIR}/build" |
| 90 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 91 | EXTRA_OECONF_append = " --python=${HOSTTOOLS_DIR}/python3" |
| 92 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 93 | do_configure_prepend_class-native() { |
| 94 | # Append build host pkg-config paths for native target since the host may provide sdl |
| 95 | BHOST_PKGCONFIG_PATH=$(PATH=/usr/bin:/bin pkg-config --variable pc_path pkg-config || echo "") |
| 96 | if [ ! -z "$BHOST_PKGCONFIG_PATH" ]; then |
| 97 | export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$BHOST_PKGCONFIG_PATH |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 98 | fi |
| 99 | } |
| 100 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 101 | do_configure() { |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 102 | ${S}/configure ${EXTRA_OECONF} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 103 | } |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 104 | do_configure[cleandirs] += "${B}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 105 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 106 | do_install () { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 107 | export STRIP="" |
| 108 | oe_runmake 'DESTDIR=${D}' install |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | # The following fragment will create a wrapper for qemu-mips user emulation |
| 112 | # binary in order to work around a segmentation fault issue. Basically, by |
| 113 | # default, the reserved virtual address space for 32-on-64 bit is set to 4GB. |
| 114 | # This will trigger a MMU access fault in the virtual CPU. With this change, |
| 115 | # the qemu-mips works fine. |
| 116 | # IMPORTANT: This piece needs to be removed once the root cause is fixed! |
| 117 | do_install_append() { |
| 118 | if [ -e "${D}/${bindir}/qemu-mips" ]; then |
| 119 | create_wrapper ${D}/${bindir}/qemu-mips \ |
| 120 | QEMU_RESERVED_VA=0x0 |
| 121 | fi |
| 122 | } |
| 123 | # END of qemu-mips workaround |
| 124 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 125 | make_qemu_wrapper() { |
| 126 | gdk_pixbuf_module_file=`pkg-config --variable=gdk_pixbuf_cache_file gdk-pixbuf-2.0` |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 127 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 128 | for tool in `ls ${D}${bindir}/qemu-system-*`; do |
| 129 | create_wrapper $tool \ |
| 130 | GDK_PIXBUF_MODULE_FILE=$gdk_pixbuf_module_file \ |
| 131 | FONTCONFIG_PATH=/etc/fonts \ |
| 132 | GTK_THEME=Adwaita |
| 133 | done |
| 134 | } |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 135 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 136 | # Disable kvm/virgl/mesa on targets that do not support it |
| 137 | PACKAGECONFIG_remove_darwin = "kvm virglrenderer glx gtk+" |
| 138 | PACKAGECONFIG_remove_mingw32 = "kvm virglrenderer glx gtk+" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 139 | |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 140 | PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,libsdl2" |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 141 | PACKAGECONFIG[virtfs] = "--enable-virtfs --enable-attr --enable-cap-ng,--disable-virtfs,libcap-ng attr," |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 142 | PACKAGECONFIG[aio] = "--enable-linux-aio,--disable-linux-aio,libaio," |
| 143 | PACKAGECONFIG[xfs] = "--enable-xfsctl,--disable-xfsctl,xfsprogs," |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 144 | PACKAGECONFIG[xen] = "--enable-xen,--disable-xen,xen-tools,xen-tools-libxenstore xen-tools-libxenctrl xen-tools-libxenguest" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 145 | PACKAGECONFIG[vnc-sasl] = "--enable-vnc --enable-vnc-sasl,--disable-vnc-sasl,cyrus-sasl," |
| 146 | PACKAGECONFIG[vnc-jpeg] = "--enable-vnc --enable-vnc-jpeg,--disable-vnc-jpeg,jpeg," |
| 147 | PACKAGECONFIG[vnc-png] = "--enable-vnc --enable-vnc-png,--disable-vnc-png,libpng," |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 148 | PACKAGECONFIG[libcurl] = "--enable-curl,--disable-curl,curl," |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 149 | PACKAGECONFIG[nss] = "--enable-smartcard,--disable-smartcard,nss," |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 150 | PACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses," |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 151 | PACKAGECONFIG[gtk+] = "--enable-gtk,--disable-gtk,gtk+3 gettext-native" |
| 152 | PACKAGECONFIG[vte] = "--enable-vte,--disable-vte,vte gettext-native" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 153 | PACKAGECONFIG[libcap-ng] = "--enable-cap-ng,--disable-cap-ng,libcap-ng," |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 154 | PACKAGECONFIG[ssh] = "--enable-libssh,--disable-libssh,libssh," |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 155 | PACKAGECONFIG[gcrypt] = "--enable-gcrypt,--disable-gcrypt,libgcrypt," |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 156 | PACKAGECONFIG[nettle] = "--enable-nettle,--disable-nettle,nettle" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 157 | PACKAGECONFIG[libusb] = "--enable-libusb,--disable-libusb,libusb1" |
| 158 | PACKAGECONFIG[fdt] = "--enable-fdt,--disable-fdt,dtc" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 159 | PACKAGECONFIG[alsa] = "--audio-drv-list='oss alsa',,alsa-lib" |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 160 | PACKAGECONFIG[glx] = "--enable-opengl,--disable-opengl,virtual/libgl" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 161 | PACKAGECONFIG[lzo] = "--enable-lzo,--disable-lzo,lzo" |
| 162 | PACKAGECONFIG[numa] = "--enable-numa,--disable-numa,numactl" |
| 163 | PACKAGECONFIG[gnutls] = "--enable-gnutls,--disable-gnutls,gnutls" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 164 | PACKAGECONFIG[bzip2] = "--enable-bzip2,--disable-bzip2,bzip2" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 165 | PACKAGECONFIG[libiscsi] = "--enable-libiscsi,--disable-libiscsi" |
| 166 | PACKAGECONFIG[kvm] = "--enable-kvm,--disable-kvm" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 167 | PACKAGECONFIG[virglrenderer] = "--enable-virglrenderer,--disable-virglrenderer,virglrenderer" |
| 168 | # spice will be in meta-networking layer |
| 169 | PACKAGECONFIG[spice] = "--enable-spice,--disable-spice,spice" |
| 170 | # usbredir will be in meta-networking layer |
| 171 | PACKAGECONFIG[usb-redir] = "--enable-usb-redir,--disable-usb-redir,usbredir" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 172 | PACKAGECONFIG[snappy] = "--enable-snappy,--disable-snappy,snappy" |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 173 | PACKAGECONFIG[glusterfs] = "--enable-glusterfs,--disable-glusterfs,glusterfs" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 174 | PACKAGECONFIG[xkbcommon] = "--enable-xkbcommon,--disable-xkbcommon,libxkbcommon" |
| 175 | PACKAGECONFIG[libudev] = "--enable-libudev,--disable-libudev,eudev" |
| 176 | PACKAGECONFIG[libxml2] = "--enable-libxml2,--disable-libxml2,libxml2" |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 177 | PACKAGECONFIG[attr] = "--enable-attr,--disable-attr,attr," |
| 178 | PACKAGECONFIG[rbd] = "--enable-rbd,--disable-rbd,ceph,ceph" |
| 179 | PACKAGECONFIG[vhost] = "--enable-vhost-net,--disable-vhost-net,," |
| 180 | PACKAGECONFIG[ust] = "--enable-trace-backend=ust,--enable-trace-backend=nop,lttng-ust," |
| 181 | PACKAGECONFIG[pie] = "--enable-pie,--disable-pie,," |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 182 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 183 | INSANE_SKIP_${PN} = "arch" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 184 | |
| 185 | FILES_${PN} += "${datadir}/icons" |