[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 0/4] fix/add CONFIG_* options for VMWare device
From: |
Blue Swirl |
Subject: |
Re: [Qemu-devel] [PATCH 0/4] fix/add CONFIG_* options for VMWare device emulation |
Date: |
Tue, 1 Feb 2011 18:10:24 +0000 |
On Tue, Feb 1, 2011 at 4:53 PM, Eduardo Habkost <address@hidden> wrote:
> Hi,
>
> This series makes CONFIG_VMWARE_VGA actually work (today we can't disable the
> option without getting a build error).
>
> It also add two new options: CONFIG_VMMOUSE and CONFIG_VMPORT, for vmmouse.o
> and vmport.o.
Nack, see the list archives for the discussion.
One way to solve this which would preserve the device model would be
to add stub devices. For example, hw/vmmouse-stub.c would be:
void *vmmouse_init(void *m)
{
return NULL;
}