From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <4d6cd976307f125d7aad5d9e8106ff59@collyer.net> To: 9fans@cse.psu.edu Subject: Re: [9fans] panic floppyinitdev From: Geoff Collyer MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Tue, 5 Nov 2002 02:31:18 -0800 Topicbox-Message-UUID: 15a527b8-eacb-11e9-9e20-41e7f4b1d025 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?