From: stsp Date: Fri, 1 Dec 2017 18:13:48 +0000 (+0000) Subject: In the macppc installer, switch the default answer for the partition X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=464db8a21a74c13492edfef71f71896f9c3e99ac;p=openbsd 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@ --- 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 ;;