summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2016-02-08 17:39:37 +0000
committerkrw <krw@openbsd.org>2016-02-08 17:39:37 +0000
commitd06b59afcd4b4c60fe3cab5e4713c0f12f0c1ab9 (patch)
tree9b766ee17eff932b00a1146dcc0057253c94ce81
parentIf manual disklabel editing is requested during install, don't emit (diff)
downloadwireguard-openbsd-d06b59afcd4b4c60fe3cab5e4713c0f12f0c1ab9.tar.xz
wireguard-openbsd-d06b59afcd4b4c60fe3cab5e4713c0f12f0c1ab9.zip
If manual disklabel editing is requested during install, don't emit
verbiage explaining what disklabels are. If you don't know, you should be using (A)uto! ok rpe@ halex@
-rw-r--r--distrib/macppc/ramdisk/install.md16
1 files changed, 3 insertions, 13 deletions
diff --git a/distrib/macppc/ramdisk/install.md b/distrib/macppc/ramdisk/install.md
index d4c617537ee..b8e4d014513 100644
--- a/distrib/macppc/ramdisk/install.md
+++ b/distrib/macppc/ramdisk/install.md
@@ -1,4 +1,4 @@
-# $OpenBSD: install.md,v 1.66 2015/12/29 11:16:14 rpe Exp $
+# $OpenBSD: install.md,v 1.67 2016/02/08 17:39:37 krw Exp $
#
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -157,18 +157,8 @@ md_prep_disklabel() {
disklabel_autolayout $_disk $_f || return
[[ -s $_f ]] && return
- cat <<__EOT
-
-You will now create an OpenBSD disklabel inside the OpenBSD $PARTTABLE
-partition. The disklabel defines how OpenBSD splits up the $PARTTABLE partition
-into OpenBSD partitions in which filesystems and swap space are created.
-You must provide each filesystem's mountpoint in this program.
-
-The offsets used in the disklabel are ABSOLUTE, i.e. relative to the
-start of the disk, NOT the start of the OpenBSD $PARTTABLE partition.
-
-__EOT
-
+ # Edit disklabel manually.
+ # Abandon all hope, ye who enter here.
disklabel -F $_f -E $_disk
}