On Fri, Dec 4, 2015 at 1:16 PM, Andrew Baumann
wrote:
> The SD spec for ACMD41 says that a zero argument is an "inquiry"
> ACMD41, which does not start initialisation and is used only for
> retrieving the OCR. However, Tianocore EDK2 (UEFI) has a bug [1]: it
> first sends an inquiry (zero) ACMD41.
On Fri, Dec 4, 2015 at 1:16 PM, Andrew Baumann
wrote:
> CMD23 is optional for SD but required for MMC, and Tianocore EDK2
> (UEFI) uses it at boot.
>
> Signed-off-by: Andrew Baumann
> ---
> For EDK2 to boot all we actually need to do is return success and
> ignore the command, but it seemed much
On Thu, Dec 3, 2015 at 10:01 PM, Andrew Baumann
wrote:
> Signed-off-by: Andrew Baumann
> ---
> hw/sd/Makefile.objs | 1 +
> hw/sd/bcm2835_emmc.c | 800
> +++
> include/hw/sd/bcm2835_emmc.h | 56 +++
> 3 files changed, 857 insertions(+)
On Thu, Dec 3, 2015 at 10:01 PM, Andrew Baumann
wrote:
> Signed-off-by: Andrew Baumann
> ---
> hw/intc/Makefile.objs| 1 +
> hw/intc/bcm2835_ic.c | 234
> +++
> include/hw/intc/bcm2835_ic.h | 26 +
> 3 files changed, 261 insertions(
On 12/05/2015 01:55 AM, Miao Yan wrote:
> Macro MAC_FMT and MAC_ARG are not defined, but used in vmxnet3_net_init().
> This will cause build error when debug level is raised in
> vmxnet3_debug.h (enable all VMXNET3_DEBUG_xxx).
>
> Use VMXNET_MF and VXMNET_MA instead.
>
> Signed-off-by: Miao Yan
On Sat, Dec 05, 2015 at 11:50:36AM +, Paul Roland wrote:
> Hi there, I am trying to create an rpm package out of qemu 2.4.1, thought
> maybe it's something obvious and somebody could guide me in the right
> direction
>
> As soon as I add --enable-seccomp I get this error on compilation:
>
> q
On Dec 5, 2015, at 9:10 AM, Mark Cave-Ayland wrote:
> On 04/12/15 11:46, Peter Maydell wrote:
>
>> On 4 December 2015 at 11:36, Mark Cave-Ayland
>> wrote:
>>> Is it worth setting up per-arch homepages on the wiki? This is something
>>> I've thought about recently since most of the information o
Hi there, I am trying to create an rpm package out of qemu 2.4.1, thought
maybe it's something obvious and somebody could guide me in the right
direction
As soon as I add --enable-seccomp I get this error on compilation:
qemu-seccomp.c:216: error: '__NR_getcpu' undeclared here (not in a function)
On 04/12/15 11:46, Peter Maydell wrote:
> On 4 December 2015 at 11:36, Mark Cave-Ayland
> wrote:
>> Is it worth setting up per-arch homepages on the wiki? This is something
>> I've thought about recently since most of the information out on the
>> internet regarding QEMU's ability to run various
Hi,
some years ago, I submitted a patch improving the mouse response in SDL
ui, but it got lost under the sands of time. Here is an updated version
for both SDL and SDL2 frontends.
With the change applied, when the gui receives a keyboard or mouse
event, it shortens the gui refresh interval to 10
The following exception is threw:
Python Exception name 'long' is not defined:
Error occurred in Python command: name 'long' is not defined
Python 2.4+, int()/long() have been unified, so replace long
with int.
Signed-off-by: Yang Wei
---
scripts/qemugdb/mtree.py | 10 +-
1 file change
On 2015-11-14 00:25, Matt Gingell wrote:
> Hi,
>
> The following patches adds support for the new KVM split irqchip
> interface discussed on the KVM mailing list.
>
> [kvm] KVM: x86: Split the APIC from the rest of IRQCHIP.
> http://thread.gmane.org/gmane.comp.emulators.kvm.devel/135918
>
> Our
This patchset fixes debug macro pattern for vmxnet3. The old style uses
#ifdef...#else...#endif to define debug macros, as a result
the format string inside the macro will never be checked
(debug not turned on by default) and is likely to cause build
errors in the future when enabled.
Note patc
Vmxnet3 uses the following debug macro style:
#ifdef SOME_DEBUG
# define debug(...) do{ printf(...); } while (0)
# else
# define debug(...) do{ } while (0)
#endif
If SOME_DEBUG is undefined, then format string inside the
debug macro will never be checked by compiler. Code is
likely to brea
Macro VMW_SHPRN(...) is already defined vmxnet3_debug.h,
so remove the duplication
Signed-off-by: Miao Yan
Reviewed-by: Eric Blake
---
hw/net/vmware_utils.h | 5 +
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/hw/net/vmware_utils.h b/hw/net/vmware_utils.h
index 1099df6..c2c2f
Macro MAC_FMT and MAC_ARG are not defined, but used in vmxnet3_net_init().
This will cause build error when debug level is raised in
vmxnet3_debug.h (enable all VMXNET3_DEBUG_xxx).
Use VMXNET_MF and VXMNET_MA instead.
Signed-off-by: Miao Yan
---
hw/net/vmxnet3.c | 2 +-
1 file changed, 1 insert
16 matches
Mail list logo