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" |
| 4 | DEPENDS = "glib-2.0 zlib pixman" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 5 | RDEPENDS_${PN}_class-target += "bash" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 6 | |
| 7 | require qemu-targets.inc |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 8 | inherit pkgconfig bluetooth |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 9 | BBCLASSEXTEND = "native nativesdk" |
| 10 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 11 | # QEMU_TARGETS is overridable variable |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 12 | 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] | 13 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 14 | EXTRA_OECONF = " \ |
| 15 | --prefix=${prefix} \ |
| 16 | --bindir=${bindir} \ |
| 17 | --includedir=${includedir} \ |
| 18 | --libdir=${libdir} \ |
| 19 | --mandir=${mandir} \ |
| 20 | --datadir=${datadir} \ |
| 21 | --docdir=${docdir}/${BPN} \ |
| 22 | --sysconfdir=${sysconfdir} \ |
| 23 | --libexecdir=${libexecdir} \ |
| 24 | --localstatedir=${localstatedir} \ |
| 25 | --with-confsuffix=/${BPN} \ |
| 26 | --disable-strip \ |
| 27 | --disable-werror \ |
| 28 | --target-list=${@get_qemu_target_list(d)} \ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 29 | --extra-cflags='${CFLAGS}' \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 30 | ${PACKAGECONFIG_CONFARGS} \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 31 | " |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 32 | EXTRA_OECONF_append_class-native = " --python=python2.7" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 33 | |
| 34 | EXTRA_OEMAKE_append_class-native = " LD='${LD}' AR='${AR}' OBJCOPY='${OBJCOPY}' LDFLAGS='${LDFLAGS}'" |
| 35 | |
| 36 | LDFLAGS_append_class-native = " -fuse-ld=bfd" |
| 37 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 38 | export LIBTOOL="${HOST_SYS}-libtool" |
| 39 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 40 | B = "${WORKDIR}/build" |
| 41 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 42 | do_configure_prepend_class-native() { |
| 43 | # Append build host pkg-config paths for native target since the host may provide sdl |
| 44 | BHOST_PKGCONFIG_PATH=$(PATH=/usr/bin:/bin pkg-config --variable pc_path pkg-config || echo "") |
| 45 | if [ ! -z "$BHOST_PKGCONFIG_PATH" ]; then |
| 46 | export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$BHOST_PKGCONFIG_PATH |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 47 | fi |
| 48 | } |
| 49 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 50 | do_configure() { |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 51 | ${S}/configure ${EXTRA_OECONF} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 52 | } |
| 53 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 54 | do_install () { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 55 | export STRIP="" |
| 56 | oe_runmake 'DESTDIR=${D}' install |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | # The following fragment will create a wrapper for qemu-mips user emulation |
| 60 | # binary in order to work around a segmentation fault issue. Basically, by |
| 61 | # default, the reserved virtual address space for 32-on-64 bit is set to 4GB. |
| 62 | # This will trigger a MMU access fault in the virtual CPU. With this change, |
| 63 | # the qemu-mips works fine. |
| 64 | # IMPORTANT: This piece needs to be removed once the root cause is fixed! |
| 65 | do_install_append() { |
| 66 | if [ -e "${D}/${bindir}/qemu-mips" ]; then |
| 67 | create_wrapper ${D}/${bindir}/qemu-mips \ |
| 68 | QEMU_RESERVED_VA=0x0 |
| 69 | fi |
| 70 | } |
| 71 | # END of qemu-mips workaround |
| 72 | |
| 73 | PACKAGECONFIG ??= " \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 74 | fdt sdl kvm \ |
| 75 | ${@bb.utils.filter('DISTRO_FEATURES', 'alsa xen', d)} \ |
| 76 | " |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 77 | PACKAGECONFIG_class-native ??= "fdt alsa kvm" |
| 78 | PACKAGECONFIG_class-nativesdk ??= "fdt sdl kvm" |
| 79 | |
| 80 | # Handle distros such as CentOS 5 32-bit that do not have kvm support |
| 81 | PACKAGECONFIG_class-native_remove = "${@'kvm' if not os.path.exists('/usr/include/linux/kvm.h') else ''}" |
| 82 | |
| 83 | # Disable kvm on targets that do not support it |
| 84 | PACKAGECONFIG_remove_darwin = "kvm" |
| 85 | PACKAGECONFIG_remove_mingw32 = "kvm" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 86 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 87 | PACKAGECONFIG[sdl] = "--enable-sdl --with-sdlabi=2.0,--disable-sdl,libsdl2" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 88 | PACKAGECONFIG[virtfs] = "--enable-virtfs --enable-attr,--disable-virtfs,libcap attr," |
| 89 | PACKAGECONFIG[aio] = "--enable-linux-aio,--disable-linux-aio,libaio," |
| 90 | PACKAGECONFIG[xfs] = "--enable-xfsctl,--disable-xfsctl,xfsprogs," |
| 91 | 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] | 92 | PACKAGECONFIG[vnc-sasl] = "--enable-vnc --enable-vnc-sasl,--disable-vnc-sasl,cyrus-sasl," |
| 93 | PACKAGECONFIG[vnc-jpeg] = "--enable-vnc --enable-vnc-jpeg,--disable-vnc-jpeg,jpeg," |
| 94 | PACKAGECONFIG[vnc-png] = "--enable-vnc --enable-vnc-png,--disable-vnc-png,libpng," |
| 95 | PACKAGECONFIG[libcurl] = "--enable-curl,--disable-curl,libcurl," |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 96 | PACKAGECONFIG[nss] = "--enable-smartcard,--disable-smartcard,nss," |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 97 | PACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses," |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 98 | PACKAGECONFIG[gtk+] = "--enable-gtk --with-gtkabi=3.0 --enable-vte,--disable-gtk --disable-vte,gtk+3 vte" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 99 | PACKAGECONFIG[libcap-ng] = "--enable-cap-ng,--disable-cap-ng,libcap-ng," |
| 100 | PACKAGECONFIG[ssh2] = "--enable-libssh2,--disable-libssh2,libssh2," |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 101 | PACKAGECONFIG[gcrypt] = "--enable-gcrypt,--disable-gcrypt,libgcrypt," |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 102 | PACKAGECONFIG[nettle] = "--enable-nettle,--disable-nettle,nettle" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 103 | PACKAGECONFIG[libusb] = "--enable-libusb,--disable-libusb,libusb1" |
| 104 | PACKAGECONFIG[fdt] = "--enable-fdt,--disable-fdt,dtc" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 105 | PACKAGECONFIG[alsa] = "--audio-drv-list='oss alsa',,alsa-lib" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 106 | PACKAGECONFIG[glx] = "--enable-opengl,--disable-opengl,mesa" |
| 107 | PACKAGECONFIG[lzo] = "--enable-lzo,--disable-lzo,lzo" |
| 108 | PACKAGECONFIG[numa] = "--enable-numa,--disable-numa,numactl" |
| 109 | PACKAGECONFIG[gnutls] = "--enable-gnutls,--disable-gnutls,gnutls" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 110 | PACKAGECONFIG[bzip2] = "--enable-bzip2,--disable-bzip2,bzip2" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 111 | PACKAGECONFIG[bluez] = "--enable-bluez,--disable-bluez,${BLUEZ}" |
| 112 | PACKAGECONFIG[libiscsi] = "--enable-libiscsi,--disable-libiscsi" |
| 113 | PACKAGECONFIG[kvm] = "--enable-kvm,--disable-kvm" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 114 | PACKAGECONFIG[virglrenderer] = "--enable-virglrenderer,--disable-virglrenderer,virglrenderer" |
| 115 | # spice will be in meta-networking layer |
| 116 | PACKAGECONFIG[spice] = "--enable-spice,--disable-spice,spice" |
| 117 | # usbredir will be in meta-networking layer |
| 118 | PACKAGECONFIG[usb-redir] = "--enable-usb-redir,--disable-usb-redir,usbredir" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 119 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 120 | INSANE_SKIP_${PN} = "arch" |