diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-11-09 06:23:30 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-11-09 06:23:30 +0000 |
commit | b873480ccd069839c028375e4d2951b2c561e00e (patch) | |
tree | 0b28600251b1014ead8a5eb985d5850e25e52fc9 | |
parent | cd9cd09c616d02984a3b79573f5a25a9d8386ca3 (diff) |
disks are rz, disable cd check for now
-rw-r--r-- | distrib/pmax/ramdisk/install.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/distrib/pmax/ramdisk/install.md b/distrib/pmax/ramdisk/install.md index 9069df633f0..5df8d383d2d 100644 --- a/distrib/pmax/ramdisk/install.md +++ b/distrib/pmax/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.1 1998/11/09 06:16:11 millert Exp $ +# $OpenBSD: install.md,v 1.2 1998/11/09 06:23:29 millert Exp $ # # Copyright (c) 1996 The NetBSD Foundation, Inc. # All rights reserved. @@ -76,11 +76,13 @@ md_get_msgbuf() { } md_get_diskdevs() { - md_get_msgbuf | egrep "^[sw]d[0-9]+ " | cutword 1 + md_get_msgbuf | egrep "^rz[0-9]+ " | cutword 1 } md_get_cddevs() { - md_get_msgbuf | egrep "^a?cd[0-9]+ " | cutword 1 + # XXX - how do we detect a CDROM (need to hook one up and see) + #md_get_msgbuf | egrep "^a?cd[0-9]+ " | cutword 1 + echo "" } md_get_partition_range() { @@ -93,7 +95,6 @@ md_installboot() { echo -n "Installing boot block... " disklabel -W ${1} - disklabel -W ${1} disklabel -B ${1} echo "done." } |