diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-02-08 17:28:10 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-02-08 17:28:10 +0000 |
commit | ed8c11baee7f4f804d3cdf7cd535cbb897422052 (patch) | |
tree | 03402dc87c4c9820bdbe1ad0835ff6dfd2f95950 /distrib/hppa | |
parent | 8327c06f4eee4dd10165995a9f2e42070cdd1812 (diff) |
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@
Diffstat (limited to 'distrib/hppa')
-rw-r--r-- | distrib/hppa/install.md | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/distrib/hppa/install.md b/distrib/hppa/install.md index e18a3342400..5bc8ff8a2df 100644 --- a/distrib/hppa/install.md +++ b/distrib/hppa/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.30 2015/06/02 19:54:06 rpe Exp $ +# $OpenBSD: install.md,v 1.31 2016/02/08 17:28:08 krw Exp $ # # machine dependent section of installation/upgrade script. # @@ -24,14 +24,8 @@ md_prep_disklabel() { disklabel_autolayout $_disk $_f || return [[ -s $_f ]] && return - cat <<__EOT -You will now create a OpenBSD disklabel on the disk. The disklabel defines -how OpenBSD splits up the disk into OpenBSD partitions in which filesystems -and swap space are created. You must provide each filesystem's mountpoint -in this program. - -__EOT - + # Edit disklabel manually. + # Abandon all hope, ye who enter here. disklabel -F $_f -E $_disk } |