Re: [Qemu-devel] Sparc-linux-user problem

2007-04-28 Thread Kevin F. Quinn
tion). I don't suppose using gcc/binutils -fPIE/-pie would achieve qemu's goals, thus avoiding the need to specify bespoke ld scripts? -- Kevin F. Quinn signature.asc Description: PGP signature

CAP_NET_ADMIN (was Re: [Qemu-devel] Two quick requests.)

2007-02-10 Thread Kevin F. Quinn
ure capabilities for executables in the filesystem, but it appears there are serious problems with that concept so the kernel doesn't support it. -- Kevin F. Quinn signature.asc Description: PGP signature ___ Qemu-devel mailing list Qemu-dev

Re: [Qemu-devel] OpenSPARC OBP source code available

2006-09-02 Thread Kevin F. Quinn
PL)? http://opensparc-t1.sunsource.net/download_sw.html "The Hypervisor and OBP source code is released under BSD license" http://opensparc-t1.sunsource.net/bsd.html Doesn't get much better than that :) -- Kevin F. Quinn signature.asc Description: PGP signature __

Re: [Qemu-devel] How to reply when receiving digest mode

2006-08-02 Thread Kevin F. Quinn
reply > link, but if it does, I don't see it.. If you choose MIME digests (where every message is an attachment), and your email client is smart enough, you can reply to the individual attachments. I couldn't say whether hotmail is smart enough, however

Re: [Qemu-devel] What can qemu do that vmware/virtual pc can't...article idea

2006-07-28 Thread Kevin F. Quinn
isation acceleration for native x86/x86_64 targets. This makes qemu great for cross-target development. See www.scratchbox.org for example. Obviously qemu also has the advantage that (apart from the virualisation module kqemu) it's open source, which means a lot to many people, at least for me!

Re: wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-08 Thread Kevin F. Quinn
On Sat, 8 Jul 2006 11:13:52 -0400 "Jim C. Brown" <[EMAIL PROTECTED]> wrote: > Good question. I'm not aware of a way to call Python code from inside > of C. See http://docs.python.org/ext/ext.html However doing this just means yet another language dependency. -- Kev

Re: [Qemu-devel] Have any ideas about how to detect whether a program is running inside QEMU?

2006-07-06 Thread Kevin F. Quinn
idtr[0],idtr[5],idtr[4],idtr[3],idtr[2]); } which doesn't need executable heap (my kernel is PaX-enabled), unlike the redpill version, but is gcc-specific. -- Kevin F. Quinn signature.asc Description: PGP signature ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

Re: [Qemu-devel] Have any ideas about how to detect whether a program is running inside QEMU?

2006-07-06 Thread Kevin F. Quinn
bit vague. > > > > More information about what you're attempting to do would be > > helpful. > > > > There are probably lots of ways to do this, but which ones make > > sense for your situation depends on various factors. > > >

Re: [Qemu-devel] Make -std-vga the default?

2006-06-28 Thread Kevin F. Quinn
In my experience the Cirrus emulation "just works", and is supported > by pretty much every OS out the box. AFAIK Windows earlier than XP > doesn't needs additional 3rd party drivers to support anonymous VESA > hardware. Seconded - the default should be the one b

Re: [Qemu-devel] QEMU GUI

2006-06-23 Thread Kevin F. Quinn
On Thu, 22 Jun 2006 20:53:54 -0500 Anthony Liguori <[EMAIL PROTECTED]> wrote: > Kevin F. Quinn wrote: > > Part of that should be to determine what the GUI will actually do; > > You're getting ahead of yourself. Just getting qemu to start with > wxWidgets instead

Re: [Qemu-devel] QEMU GUI

2006-06-22 Thread Kevin F. Quinn
repository even if it is not usable yet. > > > > Regards, > > > > Fabrice. > > > > > > ___ > > Qemu-devel mailing list > > Qemu-devel@nongnu.org > > http://lists.nongnu.org/mailman/listinfo/qemu-devel &

Re: [Qemu-devel] VMware Player

2006-06-16 Thread Kevin F. Quinn
nths ago this was not his > intention, so we should respect it and (hopefully) close > this long thread. > > On 6/16/06, Kevin F. Quinn <[EMAIL PROTECTED]> wrote: > > On Fri, 16 Jun 2006 13:45:24 +0100 > > Stuart Brady <[EMAIL PROTECTED]> wrote: > > > &g

Re: [Qemu-devel] VMware Player

2006-06-16 Thread Kevin F. Quinn
On Fri, 16 Jun 2006 13:45:24 +0100 Stuart Brady <[EMAIL PROTECTED]> wrote: > On Fri, Jun 16, 2006 at 09:21:46AM +0200, Kevin F. Quinn wrote: > > > WxWidgets (www.wxwidgets.org) provides a nice way out of this - > > provides a uniform API for the application developer, and

Re: [Qemu-devel] VMware Player

2006-06-16 Thread Kevin F. Quinn
ve (ok, > several) GUI CD/DVD authoring/burning program instead of one crappy > ported program. > -- Kevin F. Quinn signature.asc Description: PGP signature ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

Re: [Qemu-devel] Qemu

2006-05-14 Thread Kevin F. Quinn
2 if you're successfully using 0.8.1. -- Kevin F. Quinn signature.asc Description: PGP signature ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

Re: [Qemu-devel] bug report : kqemu and self-writing code

2006-05-01 Thread Kevin F. Quinn
r)(10)); > > free(addr); > > return 0; > > } > > > > > > > > > > _______ > > Qemu-devel mailing list > > Qemu-devel@nong

Re: [Qemu-devel] ./configure --help and gcc checks

2006-04-06 Thread Kevin F. Quinn
gt; > IMHO this should be changed to avoid running things like this : > ./configure --cc=gcc32 --help I see what you mean now :) It would enough to just move the gcc check in the configure script to after the help processing. -- Kevin F. Quinn

Re: [Qemu-devel] ./configure --help and gcc checks

2006-04-06 Thread Kevin F. Quinn
t;[...] > > IMHO this should be changed to avoid running things like this : > > ./configure --cc=gcc32 --help How about doing: CC=gcc32 ./configure -- Kevin F. Quinn signature.asc Description: PGP signature ___ Qemu-devel mailing list Qe

Re: [Qemu-devel] Missing ARMv6 instructions?

2006-04-01 Thread Kevin F. Quinn
mulates each instruction completely before starting the next one. Makes things much simpler - if you don't simulate the pipeline, you don't have to simulate flushing it etc :). The patent is talking about much deeper simulation, probably for use in simulating the core in relation to other com

Re: [Qemu-devel] VM Memory limit with kernel-kqemu?

2006-03-26 Thread Kevin F. Quinn
also > tried 192 MB and that did not work. Is there a limit to the amount of > memory that may be used with the -kernel-kqemu option? I found the same when I tried 256M - it works with 384M (with which qemu uses about half of my 1GB) so I didn't look into it further. -- Kevi

Re: [Qemu-devel] kernel-kqemu and linux

2006-03-20 Thread Kevin F. Quinn
env->cpuid_features |= CPUID_APIC; /* TEST */ > env->cpuid_xlevel = 0; > { > const char *model_id = "QEMU Virtual CPU version " > QEMU_VERSION; > > If it works then APIC usage will become the default on i386... > > Fabrice. > > Kevin F. Quinn wr

[Qemu-devel] kernel-kqemu and linux

2006-03-20 Thread Kevin F. Quinn
ide probe) If kernel-kqemu works with linux 2.6 for anyone, could you email a .config that works?) Thanks, -- Kevin F. Quinn signature.asc Description: PGP signature ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailma

Re: [Qemu-devel] qemu 0.7.0 does not compile with binutils 2.16

2005-06-12 Thread Kevin F . Quinn
On 10/6/2005 19:54:53, Gioele Barabucci ([EMAIL PROTECTED]) wrote: > I tried to compile qemu 0.7.0 on my gentoo-ppc box. ... > I used gcc-3.4.3, binutils 2.16 and gentoo's glibc 2.3.4.20041102-r1 with > > NPTL. Posting a bug to Gentoo's bugzilla would be a good idea (http://bugs.gentoo.org). Si

[Qemu-devel] 1) mouse and xinerama 2) ntvdm 3) win98se protection error

2005-04-27 Thread Kevin F. Quinn
Hi. I've finally successfully installed Windows 2000 and SP4 from scratch with kqemu under linux. I applied the IDE patch recently mentioned and that got around the disk-full problem. This is on latest CVS. I have an observation, and a couple of problems hopefully someone can help me with.