svn commit: r245680 - head/usr.sbin/bsdinstall/partedit

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sun Jan 20 03:55:10 UTC 2013


Author: nwhitehorn
Date: Sun Jan 20 03:55:08 2013
New Revision: 245680
URL: http://svnweb.freebsd.org/changeset/base/245680

Log:
  Make "Finish" the default choice in the partition editor. This lets you
  successfully complete an installation with all defaults by pressing
  Enter repeatedly until your machine reboots.
  
  MFC after:	3 weeks

Modified:
  head/usr.sbin/bsdinstall/partedit/diskeditor.c

Modified: head/usr.sbin/bsdinstall/partedit/diskeditor.c
==============================================================================
--- head/usr.sbin/bsdinstall/partedit/diskeditor.c	Sun Jan 20 03:47:13 2013	(r245679)
+++ head/usr.sbin/bsdinstall/partedit/diskeditor.c	Sun Jan 20 03:55:08 2013	(r245680)
@@ -77,7 +77,7 @@ diskeditor_show(const char *title, const
 	int partlist_height, partlist_width;
 	int cur_scroll = 0;
 	int key, fkey;
-	int cur_button = 0, cur_part = 0;
+	int cur_button = 5, cur_part = 0;
 	int result = DLG_EXIT_UNKNOWN;
 
 	static DLG_KEYS_BINDING binding[] = {


More information about the svn-src-head mailing list