[Qemu-devel] [PATCH] Do not ignore error, if open file failed (-serial /dev/tty)

2010-01-28 Thread Evgeniy Dushistov
In case, when qemu is executed with option like -serial /dev/ttyS0, report if there are problems with opening of devices. At now errors are silently ignoring. Signed-off-by: Evgeniy Dushistov --- qemu-char.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/qemu-char.c

Re: [Qemu-devel] [PATCH 2/2] [RFC] add emulation of at91sam9263 cpu

2009-11-17 Thread Evgeniy Dushistov
On Tue, Nov 17, 2009 at 10:39:27AM +0100, Filip Navara wrote: > I'd say it is preferable to split the individual devices and model > them using the QDEV infrastructure instead of putting it all together > into one "system controller" device. > > I've QDEV-based implementation of these devices alre

Re: [Qemu-devel] [PATCH 1/2] [RFC] add emulation of atmel pflash memory

2009-11-17 Thread Evgeniy Dushistov
On Tue, Nov 17, 2009 at 10:28:25AM +0100, Filip Navara wrote: > Interesting, I have been working on AT91SAM7X implementation. Most of > the stuff is in the GIT repository at > http://repo.or.cz/w/qemu/navara.git > > Any way to merge the efforts? I'd love to merge both mine and your > patches to th

[Qemu-devel] [PATCH 2/2] [RFC] add emulation of at91sam9263 cpu

2009-11-15 Thread Evgeniy Dushistov
add emulation of at91sam9263 cpu, plus sdram, plus nor flash connected to this cpu Signed-off-by: Evgeniy Dushistov --- Makefile.target |2 +- hw/at91sam9.c | 695 + hw/at91sam9263_defs.h | 144 ++ 3 files changed

[Qemu-devel] [PATCH 1/2] [RFC] add emulation of atmel pflash memory

2009-11-15 Thread Evgeniy Dushistov
sion of linux kernel + busybox. You can run try it in such way: ./arm-softmmu/qemu-system-arm -serial tcp::4445,server -M at91sam9263ek -pflash path/to/pflash.img -s & telnet localhost 4445 Comments? Is any way to merge this patches to mainline? Signed-off-by: Evgeniy Dushistov --- Makefil