Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 May 2002 23:21:11 -0700 (PDT)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 11895 for review
Message-ID:  <200205260621.g4Q6LBe54397@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=11895

Change 11895 by marcel@marcel_vaio on 2002/05/25 23:20:39

	I overlooked a sentence in the EFI spec that says that there
	must be a minimum of 16KB for the GPT entries. This boils
	down to 128 entries. So, bump up our default maximum to the
	EFI minimum.
	Note that we deliberately don't enforce this minimum at the
	moment. There may not be enough free space on a MBR disk to
	migrate it to a GPT disk with entries for 128 partitions...

Affected files ...

... //depot/projects/ia64/sbin/gpt/gpt.c#2 edit

Differences ...

==== //depot/projects/ia64/sbin/gpt/gpt.c#2 (text+ko) ====

@@ -30,7 +30,7 @@
  * Possible options:
  *	-r	readonly mode (maybe default and have -w?)
  *	-v	be verbose
- *	-p n	make room for n partitions (default 64?)
+ *	-p n	make room for n partitions (default 128 - minimum)
  *	-f x	read commands from file x.
  *
  * Possible usages:
@@ -562,7 +562,7 @@
 		}
 	}
 	if (!maxparts)
-		maxparts = 64;
+		maxparts = 128;
 	argc -= optind;
 	argv += optind;
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200205260621.g4Q6LBe54397>