Use romread() routines if we are booted from SCSI disks.

This commit is contained in:
ragge 1999-10-23 14:42:21 +00:00
parent 08cf6bea89
commit 362ef7b498
2 changed files with 3 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: boot.c,v 1.3 1999/06/30 18:33:33 ragge Exp $ */
/* $NetBSD: boot.c,v 1.4 1999/10/23 14:42:22 ragge Exp $ */
/*-
* Copyright (c) 1982, 1986 The Regents of the University of California.
* All rights reserved.
@ -40,8 +40,6 @@
#define V750UCODE(x) ((x>>8)&255)
#include <a.out.h>
#include "vaxstand.h"
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: conf.c,v 1.2 1999/06/30 18:30:42 ragge Exp $ */
/* $NetBSD: conf.c,v 1.3 1999/10/23 14:42:21 ragge Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -61,7 +61,7 @@ struct devsw devsw[]={
SADEV("mt",tmscpstrategy, tmscpopen, nullsys, noioctl),
SADEV("rom",romstrategy, romopen, nullsys, noioctl),
SADEV("rd",mfmstrategy, mfmopen, nullsys, noioctl),
SADEV("sd",nullsys, nullsys, nullsys, noioctl),
SADEV("sd",romstrategy, romopen, nullsys, noioctl),
SADEV("st",nullsys, nullsys, nullsys, noioctl),
SADEV("le",netstrategy, netopen, netclose, noioctl), /* LANCE */
SADEV("ze",netstrategy, netopen, netclose, noioctl), /* SGEC */