svn commit: r248239 - stable/9/usr.sbin/bsdinstall/partedit

Nathan Whitehorn nwhitehorn at FreeBSD.org
Wed Mar 13 13:45:47 UTC 2013


Author: nwhitehorn
Date: Wed Mar 13 13:45:47 2013
New Revision: 248239
URL: http://svnweb.freebsd.org/changeset/base/248239

Log:
  MFC r245680:
  
  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.

Modified:
  stable/9/usr.sbin/bsdinstall/partedit/diskeditor.c
Directory Properties:
  stable/9/usr.sbin/bsdinstall/   (props changed)

Modified: stable/9/usr.sbin/bsdinstall/partedit/diskeditor.c
==============================================================================
--- stable/9/usr.sbin/bsdinstall/partedit/diskeditor.c	Wed Mar 13 13:44:08 2013	(r248238)
+++ stable/9/usr.sbin/bsdinstall/partedit/diskeditor.c	Wed Mar 13 13:45:47 2013	(r248239)
@@ -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-all mailing list