summaryrefslogtreecommitdiffstats
path: root/rules/host-qemu.make
Commit message (Collapse)AuthorAgeFilesLines
* host-qemu: version bump 3.0.0 -> 3.1.0Michael Olbrich2019-02-031-4/+5
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: add license informationMichael Olbrich2018-11-221-0/+1
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 2.12.0 -> 3.0.0Michael Olbrich2018-10-171-2/+3
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* use ptx/get-alternative and ptx/in-path everywhereMichael Olbrich2018-09-201-1/+1
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 2.11.1 -> 2.12.0Michael Olbrich2018-06-051-5/+7
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: make sure libatomic is found by qemu-userMichael Olbrich2018-04-181-1/+2
| | | | | | Needed for pango gobject-introspection for ARMv5 and maybe others. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 2.10.1 -> 2.11.1Michael Olbrich2018-03-291-3/+5
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 2.9.0 -> 2.10.1Michael Olbrich2017-11-161-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* rules: minimize $(shell ..) usage during startupMichael Olbrich2017-05-261-2/+3
| | | | | | | These call take time and make things like 'ptxdist print ...' noticeably slower. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: don't use 'realpath'Michael Olbrich2017-05-181-1/+1
| | | | | | It's not available on older Linux distributions. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: qemu-cross: make sure the linker does not read /etc/ld.so.cacheMichael Olbrich2017-05-151-2/+10
| | | | | | | | By default the target linker will read /etc/ld.so.cache of the build host. This causes qemu-ppc to crash on a x86_64 host. Avoid this by explicitly calling the dynamic linker with '--inhibit-cache'. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: configure with --disable-tcg-interpreterMichael Olbrich2017-05-121-1/+1
| | | | | | Otherwise qemu-user seems to crash randomly. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: fake the kernel version for qemu-userMichael Olbrich2017-05-111-1/+1
| | | | | | | | | | This is necessary if the target glibc requires a newer kernel version than the version currently running in the build host. Use KERNEL_VERSION because it will be used on the target and meets the requirements of the target glibc. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 2.7.0 -> 2.9.0Michael Olbrich2017-05-101-10/+21
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: only enable libusb/pixman for qemu-systemMichael Olbrich2017-01-061-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: disable icecc for gcc > 4.9Michael Olbrich2016-11-011-0/+7
| | | | | | | | | | | | | The avx2 code used preprocessor magic that break with icecc and gcc < 4.9 with: [...] util/cutils.c:282:29: error: '__m256i' undeclared (first use in this function) [...] Avoid this by disabling icecc for host-qemu if the host-gcc is older than 4.9.x. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 2.6.0 -> 2.7.0Michael Olbrich2016-09-071-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: enable libusb by defaultAlexander Aring2016-09-021-1/+1
| | | | | | | | | | Alexander Aring added --enable-libusb in DistroKit, in order to be able to test 802.15.4 USB devices from within a qemu simulator. Signed-off-by: Alexander Aring <a.aring@pengutronix.de> [ported to ptxdist mainline] Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: enable virtfsMichael Olbrich2016-07-101-1/+1
| | | | | | This is usefull for a 9p rootfs. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 2.5.1 -> 2.6.0Michael Olbrich2016-06-151-2/+3
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gobject-introspection: don't use rpathMichael Olbrich2016-05-011-1/+2
| | | | | | | It's only used for running in qemu and although the rpath is disabled, the path remains in the target binary. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: fix cross ldd for x86_64Michael Olbrich2016-04-291-3/+3
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: fix arch selection for x86_64Michael Olbrich2016-04-291-1/+9
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* qemu: rename ldd-cross so it can be used as 'ldd' with a special PATHMichael Olbrich2016-04-211-2/+3
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 2.4.1 -> 2.5.1Michael Olbrich2016-04-211-6/+9
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: fix ldd-cross for PowerPCMichael Olbrich2016-04-201-0/+2
| | | | | | | The ldd script looks different on PowerPC so the sed magic didn't work correctly. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: fix ldd-cross for toolchains with broken lddptxdist-2016.01.0Michael Olbrich2016-01-221-1/+2
| | | | | | For some toolchains the shebang in ldd is broken. Fix it. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: enable guest base supportJan Luebbe2016-01-121-1/+1
| | | | | | | | | This is needed in some cases for qemu userspace emulation of non-PIE executables linked to addresses < /proc/sys/vm/mmap_min_addr. In that case, qemu would fail with 'Operation not permitted'. Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: add helper scriptsMichael Olbrich2016-01-121-0/+15
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 2.3.0 -> 2.4.1Michael Olbrich2015-11-071-19/+36
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 2.2.0 -> 2.3.0Robert Schwebel2015-04-301-3/+4
| | | | | | | | Version update; there is one new option and the OpenGL option has changed. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: add support for arm64Michael Olbrich2015-01-311-1/+1
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 2.0.0 -> 2.2.0Michael Olbrich2015-01-311-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 1.5.0 -> 2.0.0Michael Olbrich2014-04-191-4/+7
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: version bump 1.4.1 -> 1.5.0Michael Olbrich2013-06-121-7/+8
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: allow building with vde enabledMichael Olbrich2013-06-101-1/+0
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-qemu: add package for a host-side qemuptxdist-2013.05.0Jan Luebbe2013-05-071-0/+93
Signed-off-by: Jan Luebbe <jlu@pengutronix.de> [mol: menuconfig, disable fdt and generalize target list] Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>