From owner-freebsd-emulation@FreeBSD.ORG Sun Aug 30 19:12:10 2009 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C595106566B; Sun, 30 Aug 2009 19:12:09 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 884E48FC08; Sun, 30 Aug 2009 19:12:09 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 05A2D1E00366; Sun, 30 Aug 2009 21:12:06 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.3/8.14.3) with ESMTP id n7UJ93Bl042354; Sun, 30 Aug 2009 21:09:03 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.3/8.14.3/Submit) id n7UJ92A7042353; Sun, 30 Aug 2009 21:09:02 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Sun, 30 Aug 2009 21:09:02 +0200 To: malc Message-ID: <20090830190902.GA40977@triton8.kn-bremen.de> References: <20090829222339.GA93608@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-emulation@FreeBSD.org, Juergen Lock , Jung-uk Kim , qemu-devel@nongnu.org Subject: Re: [Qemu-devel] experimental FreeBSD qemu-devel git head port update for testing X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Aug 2009 19:12:10 -0000 On Sun, Aug 30, 2009 at 03:49:17AM +0400, malc wrote: > On Sun, 30 Aug 2009, Juergen Lock wrote: > > > Hi! > > > > Jan Kiszka asked me if the unstable guest timer irq problem still > > exists on qemu git head, so I made an update for that today: > > http://people.freebsd.org/~nox/qemu/qemu-devel-20090829.patch > > (and found out it does.) > > > > The bad news (for FreeBSD users anyway) is kqemu support has now been > > removed as `promised' (by the upstream qemu developers), so testing this > > version is probably less interesting for many FreeBSD users than the > > qemu 0.11 stable branch snapshot I posted about here, > > http://lists.freebsd.org/pipermail/freebsd-emulation/2009-August/006646.html > > but e.g. users of non-x86 targets probably will still be interested. > > > > Also the pcap patch stopped working in this snapshot and I don't yet > > know why. (I think the original version of that patch was submitted by > > Jung-uk Kim, maybe he has an idea; Cc'd.) > > > > Other misc notes: > > > > 1. I had to replace the line > > CFLAGS += $(call cc-option, $(CFLAGS), -fno-stack-protector,"") > > by > > CFLAGS += -fno-stack-protector > > in qemu/pc-bios/optionrom/Makefile because now make complained about > > recursive use of CFLAGS (in addition to forcing use of a newer as(1) > > for multiboot.S as already mentioned for the 0.11 rc, see > > files/patch-pc-bios-optionrom-Makefile in the update.) > > Less violent way to have it is: > > CFLAGS := $(CFLAGS) $(call cc-option, $(CFLAGS), -fno-stack-protector,"") > > [..snip..] Thanx, that seems to work as well. Juergen