bin/160931: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Tue Oct 11 13:20:04 UTC 2011


The following reply was made to PR bin/160931; it has been noted by GNATS.

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: bin/160931: commit references a PR
Date: Tue, 11 Oct 2011 13:19:20 +0000 (UTC)

 Author: nwhitehorn
 Date: Tue Oct 11 13:19:06 2011
 New Revision: 226249
 URL: http://svn.freebsd.org/changeset/base/226249
 
 Log:
   MFC r226160:
   Usability enhancements: do not allow setting a mountpoint on bsdlabel
   container partitions, which didn't do anything anyway, and check for
   an existing freebsd-boot partition before bothering the user to make one.
   
   PR:		bin/160931
   Approved by:	re (kib)
 
 Modified:
   stable/9/usr.sbin/bsdinstall/partedit/gpart_ops.c
 Directory Properties:
   stable/9/usr.sbin/bsdinstall/   (props changed)
 
 Modified: stable/9/usr.sbin/bsdinstall/partedit/gpart_ops.c
 ==============================================================================
 --- stable/9/usr.sbin/bsdinstall/partedit/gpart_ops.c	Tue Oct 11 13:18:44 2011	(r226248)
 +++ stable/9/usr.sbin/bsdinstall/partedit/gpart_ops.c	Tue Oct 11 13:19:06 2011	(r226249)
 @@ -892,6 +892,19 @@ addpartform:
  			goto addpartform;
  	}
  
 +	/*
 +	 * Error if this scheme needs nested partitions, this is one, and
 +	 * a mountpoint was set.
 +	 */
 +	if (strcmp(items[0].text, "freebsd") == 0 &&
 +	    strlen(items[2].text) > 0) {
 +		dialog_msgbox("Error", "Partitions of type \"freebsd\" are "
 +		    "nested BSD-type partition schemes and cannot have "
 +		    "mountpoints. After creating one, select it and press "
 +		    "Create again to add the actual file systems.", 0, 0, TRUE);
 +		goto addpartform;
 +	}
 +
  	/* If this is the root partition, check that this scheme is bootable */
  	if (strcmp(items[2].text, "/") == 0 && !is_scheme_bootable(scheme)) {
  		char message[512];
 @@ -909,7 +922,23 @@ addpartform:
  	 * If this is the root partition, and we need a boot partition, ask
  	 * the user to add one.
  	 */
 -	if (strcmp(items[2].text, "/") == 0 && bootpart_size(scheme) > 0) {
 +
 +	/* Check for existing freebsd-boot partition */
 +	LIST_FOREACH(pp, &geom->lg_provider, lg_provider) {
 +		struct partition_metadata *md;
 +		md = get_part_metadata(pp->lg_name, 0);
 +		if (md == NULL || !md->bootcode)
 +			continue;
 +		LIST_FOREACH(gc, &pp->lg_config, lg_config)
 +			if (strcmp(gc->lg_name, "type") == 0)
 +				break;
 +		if (gc != NULL && strcmp(gc->lg_val, "freebsd-boot") == 0)
 +			break;
 +	}
 +
 +	/* If there isn't one, and we need one, ask */
 +	if (strcmp(items[2].text, "/") == 0 && bootpart_size(scheme) > 0 &&
 +	    pp == NULL) {
  		if (interactive)
  			choice = dialog_yesno("Boot Partition",
  			    "This partition scheme requires a boot partition "
 _______________________________________________
 svn-src-all at freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe at freebsd.org"
 


More information about the freebsd-sysinstall mailing list