9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Geoff Collyer <geoff@collyer.net>
To: 9fans@cse.psu.edu
Subject: Re: [9fans] panic floppyinitdev
Date: Tue,  5 Nov 2002 02:31:18 -0800	[thread overview]
Message-ID: <4d6cd976307f125d7aad5d9e8106ff59@collyer.net> (raw)

It's in the boot code:

	: alpha; pwd
	/sys/src/boot/pc
	: alpha; grep -n floppyinitdev *.c
	bcom.c:13: 		floppyinit, floppyinitdev,
	devfloppy.c:204: floppyinitdev(int i, char *name)
	devfloppy.c:207: 		panic("floppyinitdev");
	load.c:13: 		floppyinit, floppyinitdev,

Here's the relevant function:

	void
	floppyinitdev(int i, char *name)
	{
		if(i >= fl.ndrive)
			panic("floppyinitdev");
		sprint(name, "fd%d", i);
	}

It's apparently trying to initialise a floppy that the boot code
believes you don't have.  I'd guess that the BIOS isn't aware of your
add-on floppy controller.  See what your BIOS Setup screen thinks you
have.  Is the add-on floppy controller at the standard address?



             reply	other threads:[~2002-11-05 10:31 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-11-05 10:31 Geoff Collyer [this message]
  -- strict thread matches above, loose matches on Subject: below --
2002-11-05  9:35 steve.simon

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=4d6cd976307f125d7aad5d9e8106ff59@collyer.net \
    --to=geoff@collyer.net \
    --cc=9fans@cse.psu.edu \
    /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).