summaryrefslogtreecommitdiff
path: root/distrib/luna88k/ramdisk/install.md
diff options
context:
space:
mode:
Diffstat (limited to 'distrib/luna88k/ramdisk/install.md')
-rw-r--r--distrib/luna88k/ramdisk/install.md22
1 files changed, 1 insertions, 21 deletions
diff --git a/distrib/luna88k/ramdisk/install.md b/distrib/luna88k/ramdisk/install.md
index ff93931b7ef..94f46c1e4c0 100644
--- a/distrib/luna88k/ramdisk/install.md
+++ b/distrib/luna88k/ramdisk/install.md
@@ -1,4 +1,4 @@
-# $OpenBSD: install.md,v 1.4 2008/03/04 00:36:38 krw Exp $
+# $OpenBSD: install.md,v 1.5 2008/03/22 23:28:10 krw Exp $
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
#
@@ -45,29 +45,9 @@ ARCH=ARCH
md_installboot() {
}
-# $1 is the disk to check
-md_checkfordisklabel() {
- local rval=0
-
- disklabel $1 >/dev/null 2>/tmp/checkfordisklabel
-
- if grep "disk label corrupted" /tmp/checkfordisklabel; then
- rval=2
- fi >/dev/null 2>&1
-
- rm -f /tmp/checkfordisklabel
- return $rval
-}
-
md_prep_disklabel() {
local _disk=$1
- md_checkfordisklabel $_disk
- case $? in
- 2) echo "WARNING: Label on disk $_disk is corrupted. You will be repairing it.\n"
- ;;
- esac
-
disklabel -W $_disk >/dev/null 2>&1
disklabel -f /tmp/fstab.$_disk -E $_disk
}