diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2017-12-01 18:13:49 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2017-12-01 18:13:49 +0000 |
commit | a8fa227adf4d79dc73d0ec744e655d10576fc866 (patch) | |
tree | 50560e9db4ee39613eb7a073687f4f9c566cc371 | |
parent | b7d0352a6685f094fe7d8bc7787215a9090e9119 (diff) |
In the macppc installer, switch the default answer for the partition
table question from "HFS" to "MBR". Most people will want to run
OpenBSD exclusively on such machines these days.
ok kettenis@
-rw-r--r-- | distrib/macppc/ramdisk/install.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/macppc/ramdisk/install.md b/distrib/macppc/ramdisk/install.md index 57b6ee97058..a23199712fe 100644 --- a/distrib/macppc/ramdisk/install.md +++ b/distrib/macppc/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.71 2017/07/28 18:15:44 rpe Exp $ +# $OpenBSD: install.md,v 1.72 2017/12/01 18:13:48 stsp Exp $ # # Copyright (c) 1996 The NetBSD Foundation, Inc. # All rights reserved. @@ -144,7 +144,7 @@ md_prep_disklabel() { PARTTABLE= while [[ -z $PARTTABLE ]]; do resp=MBR - disk_has $_disk hfs && ask "Use HFS or MBR partition table?" HFS + disk_has $_disk hfs && ask "Use HFS or MBR partition table?" MBR case $resp in [mM]*) md_prep_MBR $_disk && PARTTABLE=MBR ;; [hH]*) md_prep_HFS $_disk && PARTTABLE=HFS ;; |