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