From: lsorense@csclub.uwaterloo.ca (Lennart Sorensen)
To: "武田 俊也" <t-takeda@m1.interq.or.jp>
Cc: qemu-devel <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] Disable gus audio device in isapc
Date: Mon, 24 Aug 2009 09:29:01 -0400 [thread overview]
Message-ID: <20090824132901.GA23700@csclub.uwaterloo.ca> (raw)
In-Reply-To: <200908220430.AA00077@YOUR-BD18D6DD63.m1.interq.or.jp>
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
prev parent reply other threads:[~2009-08-24 13:29 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-22 4:30 [Qemu-devel] Disable gus audio device in isapc 武田 俊也
2009-08-22 8:10 ` malc
2009-08-24 13:29 ` Lennart Sorensen [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090824132901.GA23700@csclub.uwaterloo.ca \
--to=lsorense@csclub.uwaterloo.ca \
--cc=qemu-devel@nongnu.org \
--cc=t-takeda@m1.interq.or.jp \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).