QEMU and kvm on big.LITTLE aarch64

2020-10-27 Thread Michal Schulz
ossible to use kvm on aarch64 with big.LITTLE architecture? Or is tcg my only possible solution there? with best regards Michal Schulz -- Michal Schulz

[Qemu-devel] [Bug 833658] [NEW] Qemu ppc does not boot Debian 3.1r8

2011-08-25 Thread Schulz
Public bug reported: I tried booting the official image debian-31r8-powerpc-binary-1.iso with the following commandline: qemu-system-ppc -boot d -cdrom ../debian-31r8-powerpc-binary-1.iso -hda hd.img. The booting process stops with CPU at 100%. I can choose to boot "install-2.4" or "install" wh

Re: [Qemu-devel] FXSAVE doesn't #GP on alignment error

2008-02-13 Thread Michal Schulz
s, the FXSAVE instruction requires the > argument to be 16-byte aligned. On a real machine, violating this > constraint results in a #GP. From experience, qemu will not enforce > this alignment constraint. +1 from me. -- Michal Schulz

Re: [Qemu-devel] wrong bios.bin file in Ubuntu Linux 7.10 causes blue screen on w2k guest

2007-11-22 Thread Markus Schulz
for this project and not the original Bochs BIOS. Are you able to fix this in Ubuntu? BTW the Ubuntu has the same problem like Windows, if I try to start a image of Ubuntu with the wrong BIOS it crashes too. Best Regards, Markus Schulz

[Qemu-devel] wrong bios.bin file in Ubuntu Linux 7.10 causes blue screen on w2k guest

2007-11-22 Thread Markus Schulz
else, I'm not sure what is going on. But I hope this email may helps someone else... Best Regards, Markus Schulz

[Qemu-devel] BUG: fxsave/fxrstor on unaligned address

2007-11-03 Thread Michal Schulz
e in hacking qemu code (it has to be most likely fixed in the target-i386/translate.c file, around lines 6210-6237). regards, M. -- Michal Schulz

Re: [Qemu-devel] [PATCH, RFC] USB OHCI isochronous transfers support

2007-10-22 Thread Michal Schulz
roller should be > emulated instead of the default UHCI. What do you think about it? -- Michal Schulz diff -Naur qemu-0.9.0/hw/pc.c qemu-0.9.0-ohci-patch/hw/pc.c --- qemu-0.9.0/hw/pc.c 2007-02-06 00:01:54.0 +0100 +++ qemu-0.9.0-ohci-patch/hw/pc.c 2007-03-29 15:43:18.0 +0200 @@ -6

Re: [Qemu-devel] [PATCH, RFC] More than 2G of memory on 64-bit hosts

2007-06-25 Thread Michal Schulz
On Monday 25 June 2007, Blue Swirl wrote: > Nice, I didn't know about that. But how is this any different from > unsigned long? It may be the same. But at least the code looks more consistent (IMHO) :) -- Michal Schulz

Re: [Qemu-devel] [PATCH, RFC] More than 2G of memory on 64-bit hosts

2007-06-25 Thread Michal Schulz
ory sizes, I've found some in OpenBIOS but there are still many > left. > > Any comments? One from me, if you like... Just don't use the "unsigned long" type. The intptr_t type would be better (it's 32-bit on 32-bit systems and 64-bit on 64-bit systems). My 0,02€. -- Michal Schulz

[Qemu-devel] patch for PC target - OHCI use

2007-03-29 Thread Michal Schulz
Hello. I've made small patch for qemu, which adds a new command line option - the "-ohci". It instructs qemu that the OHCI controller should be emulated instead of the default UHCI. What do you think about it? -- Michal Schulz diff -Naur qemu-0.9.0/hw/pc.c qemu-0.9.0-ohc