From bf646e945e103feef596e18ef9433cdab97fde51 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 16 Dec 2016 13:25:10 +0100 Subject: [PATCH 1/2] qemu: Update version from 2.6.1 to 2.6.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit News: > September 29th, 2016 > > • QEMU version 2.6.2 is out! See the Download page for more > information. Announcement [1]: > This is a fairly small update to 2.6.1 that addresses: > > - a security issue when using virtfs/virtio-9p which can lead to a guest > gaining unintended access to the host filesystem, > - a regression introduced into 2.6.1 which can result in live migration > failing when virtio devices have pending entries in their virtqueues, > - and various issues related to VNC and emulated network/storage > devices, among other things. > > Users of QEMU 2.6.1 should upgrade accordingly. [1] https://lists.gnu.org/archive/html/qemu-devel/2016-09/msg07971.html --- qemu.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu.be0 b/qemu.be0 index 75d81010f..e2709a194 100755 --- a/qemu.be0 +++ b/qemu.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION qemu-2.6.1-2 +# BEE_VERSION qemu-2.6.2-0 SRCURL[0]="http://wiki.qemu.org/download/qemu-${PKGVERSION}.tar.bz2" From 00b5fe3a816f71298d89aafd0209cb940d421a9c Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 16 Dec 2016 14:10:24 +0100 Subject: [PATCH 2/2] qemu: Enable jemalloc support Pass `--enable-jemalloc` as requested by Thomas. --- qemu.be0 | 1 + 1 file changed, 1 insertion(+) diff --git a/qemu.be0 b/qemu.be0 index e2709a194..69a027dc0 100755 --- a/qemu.be0 +++ b/qemu.be0 @@ -29,6 +29,7 @@ mee_configure() { start_cmd ${S}/configure --prefix=${PREFIX} \ $targets \ --enable-system \ + --enable-jemalloc \ --enable-virtfs \ --audio-drv-list=${AUDIODRIVERS} }