screw it. #ifdef out the i386 disk-name-getting routine.

This commit is contained in:
cgd 1994-03-30 01:37:04 +00:00
parent 117a397c4b
commit 68e9ccd936
1 changed files with 10 additions and 5 deletions

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* from: @(#)names.c 5.2 (Berkeley) 6/4/91 * from: @(#)names.c 5.2 (Berkeley) 6/4/91
* $Id: names.c,v 1.6 1994/03/27 12:26:33 cgd Exp $ * $Id: names.c,v 1.7 1994/03/30 01:37:04 cgd Exp $
*/ */
#if !defined(hp300) && !defined(tahoe) && !defined(vax) && !defined(i386) #if !defined(hp300) && !defined(tahoe) && !defined(vax) && !defined(i386)
@ -43,11 +43,17 @@ void read_names()
#endif #endif
#ifdef i386 #ifdef i386
#include <arch/i386/isa/isa_device.h>
char *defdrives[] = { "fd0", "fd1", "wd0", "wd1", char *defdrives[] = { "fd0", "fd1", "wd0", "wd1",
"sd0", "sd1", "sd2", "sd3", 0 }; "sd0", "sd1", "sd2", "sd3", 0 };
void
read_names()
{
}
#ifdef notdef
#include <arch/i386/isa/isa_device.h>
void void
read_names() read_names()
{ {
@ -76,8 +82,6 @@ read_names()
if (dev.id_parent == NULL) if (dev.id_parent == NULL)
continue; continue;
continue; /* XXX screw it */
(void)kvm_read(dev.id_driver, &drv, sizeof drv); (void)kvm_read(dev.id_driver, &drv, sizeof drv);
(void)kvm_read(drv.name, name, sizeof name); (void)kvm_read(drv.name, name, sizeof name);
@ -91,6 +95,7 @@ read_names()
i++; i++;
} }
} }
#endif
#endif /* i386 */ #endif /* i386 */
#ifdef hp300 #ifdef hp300