qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] Disable gus audio device in isapc


From: Lennart Sorensen
Subject: Re: [Qemu-devel] Disable gus audio device in isapc
Date: Mon, 24 Aug 2009 09:29:01 -0400
User-agent: Mutt/1.5.18 (2008-05-17)

On Sat, Aug 22, 2009 at 01:30:16PM +0900, 武田 俊也 wrote:
> Hi members,
> 
> Both isa ne2k nic and gus audio device uses the ioport 0x300
> and it causes isa pc crash issue.
> 
> This is the patch to disable gus in the isa pc case.
> 
> --- pc.orig   Thu Aug 20 11:13:30 2009
> +++ pc.c      Sat Aug 22 11:19:02 2009
> @@ -762,6 +762,10 @@
>          if (s) {
>              for (c = soundhw; c->name; ++c) {
>                  if (c->enabled) {
> +                    if (!pci_bus && strcmp(c->name, "gus") == 0) {
> +                        fprintf(stderr, "qemu: disable Gravis Ultrasound GF1 
> for isapc\n");
> +                        continue;
> +                    }
>                      if (c->isa) {
>                          c->init.init_isa (s, pic);
>                      }

Given the gus is an isa device, how does that make sense?

Back when some of us actually used a gus gf1 and isa ne2k cards, we
simply configured out ne2k cards for 0x310 or 0x320 or something else
not already in use.  The ne2k does not have to use 0x300.

-- 
Len Sorensen




reply via email to

[Prev in Thread] Current Thread [Next in Thread]