Re: [Qemu-devel] Missing dependency checks in qemu build

2014-03-22 Thread Matthew Fernandez
, schrieb Matthew Fernandez: Hi all, This only came to my attention when building qemu on a colleague's machine recently, but there are some dependencies for the build that are not detected during the standard `configure` process. In particular, missing autoconf was not detected until

[Qemu-devel] Missing dependency checks in qemu build

2014-03-21 Thread Matthew Fernandez
Hi all, This only came to my attention when building qemu on a colleague's machine recently, but there are some dependencies for the build that are not detected during the standard `configure` process. In particular, missing autoconf was not detected until running `make` itself. Also missing

Re: [Qemu-devel] [PATCH 6/6] softmmu-semi: fix lock_user* functions not to deref NULL upon OOM

2012-05-19 Thread Matthew Fernandez
On 16 May 2012 23:08, Jim Meyering j...@meyering.net wrote: From: Jim Meyering meyer...@redhat.com Use g_malloc/g_free in place of malloc/free. Signed-off-by: Jim Meyering meyer...@redhat.com Acked-by: Matthew Fernandez matthew.fernan...@gmail.com ---  softmmu-semi.h | 6 +++---  1 file

Re: [Qemu-devel] [PATCH] Command line support for altering the log file location

2011-06-29 Thread Matthew Fernandez
On 29 June 2011 05:02, Edgar E. Iglesias edgar.igles...@gmail.com wrote: On Wed, Jun 08, 2011 at 12:32:40PM +1000, Matthew Fernandez wrote: Add command line support for logging to a location other than /tmp/qemu.log. With logging enabled (command line option -d), the log is written

[Qemu-devel] [PATCH] Correct spelling of licensed

2011-06-25 Thread Matthew Fernandez
Correct typos of licenced to licensed. Signed-off-by: Matthew Fernandez matthew.fernan...@gmail.com ... On 24 June 2011 00:42, Stefan Weil w...@mail.berlios.de wrote: Am 23.06.2011 10:08, schrieb Matthew Fernandez: would you mind sending a patch which fixes all other licenced, too

Re: [Qemu-devel] [PATCH trivial] Fix comment typos in hw/armv7m.c

2011-06-23 Thread Matthew Fernandez
- Original message - Am 23.06.2011 02:59, schrieb Matthew Fernandez: Fix a couple of typos in comments. Signed-off-by: Matthew Fernandezmatthew.fernan...@gmail.com This patch doesn't touch any code and should (hopefully) not be controversial. There doesn't seem

Re: [Qemu-devel] [PATCH trivial] Fix comment typos in hw/armv7m.c

2011-06-23 Thread Matthew Fernandez
On 23 June 2011 20:22, Andreas Färber andreas.faer...@web.de wrote: Am 23.06.2011 um 02:59 schrieb Matthew Fernandez: Fix a couple of typos in comments. Signed-off-by: Matthew Fernandez matthew.fernan...@gmail.com This patch doesn't touch any code and should (hopefully

[Qemu-devel] [PATCH trivial] Fix comment typos in hw/armv7m.c

2011-06-22 Thread Matthew Fernandez
Fix a couple of typos in comments. Signed-off-by: Matthew Fernandez matthew.fernan...@gmail.com This patch doesn't touch any code and should (hopefully) not be controversial. There doesn't seem to be a maintainer for this file, but changes are trivial. diff --git a/hw/armv7m.c b/hw

Re: [Qemu-devel] [PATCH] Command line support for altering the log file location

2011-06-07 Thread Matthew Fernandez
-by: Matthew Fernandez matthew.fernan...@gmail.com Thanks Kevin and Blue Swirl for the feedback. Amended patch is below. On 7 June 2011 18:49, Kevin Wolf kw...@redhat.com wrote: Am 05.06.2011 02:46, schrieb Matthew Fernandez: So, to clarify, all text above the '' is included as the commit message

Re: [Qemu-devel] [PATCH] Command line support for altering the log file location

2011-06-04 Thread Matthew Fernandez
with these changes. On 4 June 2011 20:18, Blue Swirl blauwir...@gmail.com wrote: On Tue, May 31, 2011 at 9:20 AM, Matthew Fernandez matthew.fernan...@gmail.com wrote: Hi, The included patch adds command line support for logging to a location other than /tmp/qemu.log. The diff is relative to commit

[Qemu-devel] [PATCH] Command line support for altering the log file location

2011-05-31 Thread Matthew Fernandez
for reviewing/accepting this, but I've CCed you as it touches vl.c. Thanks, Matthew Signed-off-by: Matthew Fernandez matthew.fernan...@gmail.com diff --git a/bsd-user/main.c b/bsd-user/main.c index 0c3fca1..0af8a7e 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -690,7 +690,8 @@ static void

[Qemu-devel] qemu log path command line options

2011-05-25 Thread Matthew Fernandez
Hi all, I was planning on sending a patch to allow you to specify the log file location on the command line (as opposed to having it hard coded to /tmp/qemu.log). As this seems like a relatively straightforward feature to me, I was wondering if there was some philosophical reason why it's never