1 // SPDX-License-Identifier: GPL-2.0+
3 * cmd_gpt.c -- GPT (GUID Partition Table) handling command
6 * Lukasz Majewski <l.majewski@majess.pl>
8 * Copyright (C) 2012 Samsung Electronics
9 * author: Lukasz Majewski <l.majewski@samsung.com>
10 * author: Piotr Wilczek <p.wilczek@samsung.com>
24 #include <linux/ctype.h>
27 #include <linux/compat.h>
28 #include <linux/err.h>
29 #include <linux/sizes.h>
32 static LIST_HEAD(disk_partitions);
35 * extract_env(): Expand env name from string format '&{env_name}'
36 * and return pointer to the env (if the env is set)
38 * @param str - pointer to string
39 * @param env - pointer to pointer to extracted env
41 * Return: - zero on successful expand and env is set
43 static int extract_env(const char *str, char **env)
47 #ifdef CONFIG_RANDOM_UUID
48 char uuid_str[UUID_STR_LEN + 1];
51 if (!str || strlen(str) < 4)
54 if (!((strncmp(str, "${", 2) == 0) && (str[strlen(str) - 1] == '}')))
61 memset(s + strlen(s) - 1, '\0', 1);
62 memmove(s, s + 2, strlen(s) - 1);
66 #ifdef CONFIG_RANDOM_UUID
67 debug("%s unset. ", str);
68 gen_rand_uuid_str(uuid_str, UUID_STR_FORMAT_GUID);
73 debug("Set to random.\n");
76 debug("Can't get random UUID.\n");
79 debug("%s unset.\n", str);
82 debug("%s get from environment.\n", str);
93 * extract_val(): Extract value from a key=value pair list (comma separated).
94 * Only value for the given key is returend.
95 * Function allocates memory for the value, remember to free!
97 * @param str - pointer to string with key=values pairs
98 * @param key - pointer to the key to search for
100 * Return: - pointer to allocated string with the value
102 static char *extract_val(const char *str, const char *key)
108 strcopy = strdup(str);
120 if (strcmp(k, key) == 0) {
132 * found_key(): Found key without value in parameter list (comma separated).
134 * @param str - pointer to string with key
135 * @param key - pointer to the key to search for
137 * Return: - true on found key
139 static bool found_key(const char *str, const char *key)
145 strcopy = strdup(str);
154 if (strcmp(k, key) == 0) {
165 static int calc_parts_list_len(int numparts)
167 int partlistlen = UUID_STR_LEN + 1 + strlen("uuid_disk=");
171 /* per-partition additions; numparts starts at 1, so this should be correct */
172 partlistlen += numparts * (strlen("name=,") + PART_NAME_LEN + 1);
173 /* see part.h for definition of struct disk_partition */
174 partlistlen += numparts * (strlen("start=MiB,") + sizeof(lbaint_t) + 1);
175 partlistlen += numparts * (strlen("size=MiB,") + sizeof(lbaint_t) + 1);
176 partlistlen += numparts * (strlen("uuid=;") + UUID_STR_LEN + 1);
177 /* for the terminating null */
179 debug("Length of partitions_list is %d for %d partitions\n", partlistlen,
184 #ifdef CONFIG_CMD_GPT_RENAME
185 static void del_gpt_info(void)
187 struct list_head *pos = &disk_partitions;
188 struct disk_part *curr;
189 while (!list_empty(pos)) {
190 curr = list_entry(pos->next, struct disk_part, list);
196 static struct disk_part *allocate_disk_part(struct disk_partition *info,
199 struct disk_part *newpart;
200 newpart = calloc(1, sizeof(struct disk_part));
202 return ERR_PTR(-ENOMEM);
204 newpart->gpt_part_info.start = info->start;
205 newpart->gpt_part_info.size = info->size;
206 newpart->gpt_part_info.blksz = info->blksz;
207 strncpy((char *)newpart->gpt_part_info.name, (const char *)info->name,
209 newpart->gpt_part_info.name[PART_NAME_LEN - 1] = '\0';
210 strncpy((char *)newpart->gpt_part_info.type, (const char *)info->type,
212 newpart->gpt_part_info.type[PART_TYPE_LEN - 1] = '\0';
213 newpart->gpt_part_info.bootable = info->bootable;
214 #ifdef CONFIG_PARTITION_UUIDS
215 strncpy(newpart->gpt_part_info.uuid, (const char *)info->uuid,
217 /* UUID_STR_LEN is correct, as uuid[]'s length is UUID_STR_LEN+1 chars */
218 newpart->gpt_part_info.uuid[UUID_STR_LEN] = '\0';
220 newpart->partnum = partnum;
225 static void prettyprint_part_size(char *sizestr, lbaint_t partsize,
228 unsigned long long partbytes, partmegabytes;
230 partbytes = partsize * blksize;
231 partmegabytes = lldiv(partbytes, SZ_1M);
232 snprintf(sizestr, 16, "%lluMiB", partmegabytes);
235 static void print_gpt_info(void)
237 struct list_head *pos;
238 struct disk_part *curr;
239 char partstartstr[16];
240 char partsizestr[16];
242 list_for_each(pos, &disk_partitions) {
243 curr = list_entry(pos, struct disk_part, list);
244 prettyprint_part_size(partstartstr, curr->gpt_part_info.start,
245 curr->gpt_part_info.blksz);
246 prettyprint_part_size(partsizestr, curr->gpt_part_info.size,
247 curr->gpt_part_info.blksz);
249 printf("Partition %d:\n", curr->partnum);
250 printf("Start %s, size %s\n", partstartstr, partsizestr);
251 printf("Block size %lu, name %s\n", curr->gpt_part_info.blksz,
252 curr->gpt_part_info.name);
253 printf("Type %s, bootable %d\n", curr->gpt_part_info.type,
254 curr->gpt_part_info.bootable & PART_BOOTABLE);
255 #ifdef CONFIG_PARTITION_UUIDS
256 printf("UUID %s\n", curr->gpt_part_info.uuid);
263 * create the string that upstream 'gpt write' command will accept as an
266 * From doc/README.gpt, Format of partitions layout:
267 * "uuid_disk=...;name=u-boot,size=60MiB,uuid=...;
268 * name=kernel,size=60MiB,uuid=...;"
269 * The fields 'name' and 'size' are mandatory for every partition.
270 * The field 'start' is optional. The fields 'uuid' and 'uuid_disk'
271 * are optional if CONFIG_RANDOM_UUID is enabled.
273 static int create_gpt_partitions_list(int numparts, const char *guid,
274 char *partitions_list)
276 struct list_head *pos;
277 struct disk_part *curr;
278 char partstr[PART_NAME_LEN + 1];
280 if (!partitions_list)
283 strcpy(partitions_list, "uuid_disk=");
284 strncat(partitions_list, guid, UUID_STR_LEN + 1);
285 strcat(partitions_list, ";");
287 list_for_each(pos, &disk_partitions) {
288 curr = list_entry(pos, struct disk_part, list);
289 strcat(partitions_list, "name=");
290 strncat(partitions_list, (const char *)curr->gpt_part_info.name,
292 sprintf(partstr, ",start=0x%llx",
293 (unsigned long long)curr->gpt_part_info.start *
294 curr->gpt_part_info.blksz);
295 /* one extra byte for NULL */
296 strncat(partitions_list, partstr, PART_NAME_LEN + 1);
297 sprintf(partstr, ",size=0x%llx",
298 (unsigned long long)curr->gpt_part_info.size *
299 curr->gpt_part_info.blksz);
300 strncat(partitions_list, partstr, PART_NAME_LEN + 1);
302 strcat(partitions_list, ",uuid=");
303 strncat(partitions_list, curr->gpt_part_info.uuid,
305 strcat(partitions_list, ";");
311 * read partition info into disk_partitions list where
312 * it can be printed or modified
314 static int get_gpt_info(struct blk_desc *dev_desc)
316 /* start partition numbering at 1, as U-Boot does */
317 int valid_parts = 0, p, ret;
318 struct disk_partition info;
319 struct disk_part *new_disk_part;
322 * Always re-read partition info from device, in case
325 INIT_LIST_HEAD(&disk_partitions);
327 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
328 ret = part_get_info(dev_desc, p, &info);
332 /* Add 1 here because counter is zero-based but p1 is
333 the first partition */
334 new_disk_part = allocate_disk_part(&info, valid_parts+1);
335 if (IS_ERR(new_disk_part))
338 list_add_tail(&new_disk_part->list, &disk_partitions);
341 if (valid_parts == 0) {
342 printf("** No valid partitions found **\n");
347 if (valid_parts >= 1)
352 /* a wrapper to test get_gpt_info */
353 static int do_get_gpt_info(struct blk_desc *dev_desc, char * const namestr)
357 numparts = get_gpt_info(dev_desc);
361 char disk_guid[UUID_STR_LEN + 1];
362 char *partitions_list;
366 ret = get_disk_guid(dev_desc, disk_guid);
370 partlistlen = calc_parts_list_len(numparts);
371 partitions_list = malloc(partlistlen);
372 if (!partitions_list) {
376 memset(partitions_list, '\0', partlistlen);
378 ret = create_gpt_partitions_list(numparts, disk_guid,
381 printf("Error: Could not create partition list string!\n");
383 env_set(namestr, partitions_list);
385 free(partitions_list);
397 * set_gpt_info(): Fill partition information from string
398 * function allocates memory, remember to free!
400 * @param dev_desc - pointer block device descriptor
401 * @param str_part - pointer to string with partition information
402 * @param str_disk_guid - pointer to pointer to allocated string with disk guid
403 * @param partitions - pointer to pointer to allocated partitions array
404 * @param parts_count - number of partitions
406 * Return: - zero on success, otherwise error
409 static int set_gpt_info(struct blk_desc *dev_desc,
410 const char *str_part,
411 char **str_disk_guid,
412 struct disk_partition **partitions,
419 struct disk_partition *parts;
421 uint64_t size_ll, start_ll;
423 int max_str_part = calc_parts_list_len(MAX_SEARCH_PARTITIONS);
425 debug("%s: lba num: 0x%x %d\n", __func__,
426 (unsigned int)dev_desc->lba, (unsigned int)dev_desc->lba);
428 if (str_part == NULL)
431 str = strdup(str_part);
435 /* extract disk guid */
437 val = extract_val(str, "uuid_disk");
439 #ifdef CONFIG_RANDOM_UUID
440 *str_disk_guid = malloc(UUID_STR_LEN + 1);
441 if (*str_disk_guid == NULL)
443 gen_rand_uuid_str(*str_disk_guid, UUID_STR_FORMAT_STD);
449 val = strsep(&val, ";");
450 if (extract_env(val, &p))
452 *str_disk_guid = strdup(p);
454 /* Move s to first partition */
458 printf("Error: is the partitions string NULL-terminated?\n");
461 if (strnlen(s, max_str_part) == 0)
464 i = strnlen(s, max_str_part) - 1;
468 /* calculate expected number of partitions */
476 /* allocate memory for partitions */
477 parts = calloc(sizeof(struct disk_partition), p_count);
481 /* retrieve partitions data from string */
482 for (i = 0; i < p_count; i++) {
483 tok = strsep(&s, ";");
489 val = extract_val(tok, "uuid");
491 /* 'uuid' is optional if random uuid's are enabled */
492 #ifdef CONFIG_RANDOM_UUID
493 gen_rand_uuid_str(parts[i].uuid, UUID_STR_FORMAT_STD);
499 if (extract_env(val, &p))
501 if (strnlen(p, max_str_part) >= sizeof(parts[i].uuid)) {
502 printf("Wrong uuid format for partition %d\n", i);
506 strncpy((char *)parts[i].uuid, p, max_str_part);
509 #ifdef CONFIG_PARTITION_TYPE_GUID
511 val = extract_val(tok, "type");
513 /* 'type' is optional */
514 if (extract_env(val, &p))
516 if (strnlen(p, max_str_part) >= sizeof(parts[i].type_guid)) {
517 printf("Wrong type guid format for partition %d\n",
522 strncpy((char *)parts[i].type_guid, p, max_str_part);
527 val = extract_val(tok, "name");
528 if (!val) { /* name is mandatory */
532 if (extract_env(val, &p))
534 if (strnlen(p, max_str_part) >= sizeof(parts[i].name)) {
538 strncpy((char *)parts[i].name, p, max_str_part);
542 val = extract_val(tok, "size");
543 if (!val) { /* 'size' is mandatory */
547 if (extract_env(val, &p))
549 if ((strcmp(p, "-") == 0)) {
550 /* Let part efi module to auto extend the size */
553 size_ll = ustrtoull(p, &p, 0);
554 parts[i].size = lldiv(size_ll, dev_desc->blksz);
560 val = extract_val(tok, "start");
561 if (val) { /* start address is optional */
562 if (extract_env(val, &p))
564 start_ll = ustrtoull(p, &p, 0);
565 parts[i].start = lldiv(start_ll, dev_desc->blksz);
569 offset += parts[i].size + parts[i].start;
572 if (found_key(tok, "bootable"))
573 parts[i].bootable = PART_BOOTABLE;
576 *parts_count = p_count;
583 free(*str_disk_guid);
589 static int gpt_repair(struct blk_desc *blk_dev_desc)
593 ret = gpt_repair_headers(blk_dev_desc);
598 static int gpt_default(struct blk_desc *blk_dev_desc, const char *str_part)
603 struct disk_partition *partitions = NULL;
605 /* fill partitions */
606 ret = set_gpt_info(blk_dev_desc, str_part,
607 &str_disk_guid, &partitions, &part_count);
610 printf("No partition list provided\n");
612 printf("Missing disk guid\n");
613 if ((ret == -3) || (ret == -4))
614 printf("Partition list incomplete\n");
618 /* save partitions layout to disk */
619 ret = gpt_restore(blk_dev_desc, str_disk_guid, partitions, part_count);
626 static int gpt_verify(struct blk_desc *blk_dev_desc, const char *str_part)
628 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1,
629 blk_dev_desc->blksz);
630 struct disk_partition *partitions = NULL;
631 gpt_entry *gpt_pte = NULL;
636 /* fill partitions */
637 ret = set_gpt_info(blk_dev_desc, str_part,
638 &str_disk_guid, &partitions, &part_count);
641 printf("No partition list provided - only basic check\n");
642 ret = gpt_verify_headers(blk_dev_desc, gpt_head,
647 printf("Missing disk guid\n");
648 if ((ret == -3) || (ret == -4))
649 printf("Partition list incomplete\n");
653 /* Check partition layout with provided pattern */
654 ret = gpt_verify_partitions(blk_dev_desc, partitions, part_count,
664 * gpt_enumerate() - Enumerate partition names into environment variable.
666 * Enumerate partition names. Partition names are stored in gpt_partition_list
667 * environment variable. Each partition name is delimited by space.
669 * @desc: block device descriptor
671 * @Return: '0' on success and -ve error on failure
673 static int gpt_enumerate(struct blk_desc *desc)
675 struct part_driver *first_drv, *part_drv;
676 int str_len = 0, tmp_len;
677 char part_list[2048];
682 n_drvs = part_driver_get_count();
684 printf("Failed to get partition driver count\n");
688 first_drv = part_driver_get_first();
689 for (part_drv = first_drv; part_drv != first_drv + n_drvs; part_drv++) {
690 struct disk_partition pinfo;
694 for (i = 1; i < part_drv->max_entries; i++) {
695 ret = part_drv->get_info(desc, i, &pinfo);
697 /* no more entries in table */
701 ptr = &part_list[str_len];
702 tmp_len = strlen((const char *)pinfo.name);
706 if (str_len > sizeof(part_list)) {
707 printf("Error insufficient memory\n");
710 strcpy(ptr, (const char *)pinfo.name);
711 /* One byte for space(" ") delimiter */
716 part_list[strlen(part_list) - 1] = 0;
717 debug("setenv gpt_partition_list %s\n", part_list);
719 return env_set("gpt_partition_list", part_list);
723 * gpt_setenv_part_variables() - setup partition environmental variables
725 * Setup the gpt_partition_name, gpt_partition_entry, gpt_partition_addr
726 * and gpt_partition_size environment variables.
728 * @pinfo: pointer to disk partition
729 * @i: partition entry
731 * @Return: '0' on success and -ENOENT on failure
733 static int gpt_setenv_part_variables(struct disk_partition *pinfo, int i)
737 ret = env_set_hex("gpt_partition_addr", pinfo->start);
741 ret = env_set_hex("gpt_partition_size", pinfo->size);
745 ret = env_set_ulong("gpt_partition_entry", i);
749 ret = env_set("gpt_partition_name", (const char *)pinfo->name);
760 * gpt_setenv() - Dynamically setup environment variables.
762 * Dynamically setup environment variables for name, index, offset and size
763 * for partition in GPT table after running "gpt setenv" for a partition name.
765 * @desc: block device descriptor
766 * @name: partition name
768 * @Return: '0' on success and -ve err on failure
770 static int gpt_setenv(struct blk_desc *desc, const char *name)
772 struct part_driver *first_drv, *part_drv;
776 n_drvs = part_driver_get_count();
778 printf("Failed to get partition driver count\n");
782 first_drv = part_driver_get_first();
783 for (part_drv = first_drv; part_drv != first_drv + n_drvs; part_drv++) {
784 struct disk_partition pinfo;
787 for (i = 1; i < part_drv->max_entries; i++) {
788 ret = part_drv->get_info(desc, i, &pinfo);
790 /* no more entries in table */
794 if (!strcmp(name, (const char *)pinfo.name)) {
795 /* match found, setup environment variables */
796 ret = gpt_setenv_part_variables(&pinfo, i);
809 static int do_disk_guid(struct blk_desc *dev_desc, char * const namestr)
812 char disk_guid[UUID_STR_LEN + 1];
814 ret = get_disk_guid(dev_desc, disk_guid);
816 return CMD_RET_FAILURE;
819 env_set(namestr, disk_guid);
821 printf("%s\n", disk_guid);
826 #ifdef CONFIG_CMD_GPT_RENAME
827 static int do_rename_gpt_parts(struct blk_desc *dev_desc, char *subcomm,
828 char *name1, char *name2)
830 struct list_head *pos;
831 struct disk_part *curr;
832 struct disk_partition *new_partitions = NULL;
833 char disk_guid[UUID_STR_LEN + 1];
834 char *partitions_list, *str_disk_guid = NULL;
836 int partlistlen, ret, numparts = 0, partnum, i = 1, ctr1 = 0, ctr2 = 0;
838 if ((subcomm == NULL) || (name1 == NULL) || (name2 == NULL) ||
839 (strcmp(subcomm, "swap") && (strcmp(subcomm, "rename"))))
842 ret = get_disk_guid(dev_desc, disk_guid);
846 * Allocates disk_partitions, requiring matching call to del_gpt_info()
849 numparts = get_gpt_info(dev_desc);
851 return numparts ? numparts : -ENODEV;
853 partlistlen = calc_parts_list_len(numparts);
854 partitions_list = malloc(partlistlen);
855 if (!partitions_list) {
859 memset(partitions_list, '\0', partlistlen);
861 ret = create_gpt_partitions_list(numparts, disk_guid, partitions_list);
863 free(partitions_list);
867 * Uncomment the following line to print a string that 'gpt write'
868 * or 'gpt verify' will accept as input.
870 debug("OLD partitions_list is %s with %u chars\n", partitions_list,
871 (unsigned)strlen(partitions_list));
873 /* set_gpt_info allocates new_partitions and str_disk_guid */
874 ret = set_gpt_info(dev_desc, partitions_list, &str_disk_guid,
875 &new_partitions, &part_count);
879 if (!strcmp(subcomm, "swap")) {
880 if ((strlen(name1) > PART_NAME_LEN) || (strlen(name2) > PART_NAME_LEN)) {
881 printf("Names longer than %d characters are truncated.\n", PART_NAME_LEN);
885 list_for_each(pos, &disk_partitions) {
886 curr = list_entry(pos, struct disk_part, list);
887 if (!strcmp((char *)curr->gpt_part_info.name, name1)) {
888 strcpy((char *)curr->gpt_part_info.name, name2);
890 } else if (!strcmp((char *)curr->gpt_part_info.name, name2)) {
891 strcpy((char *)curr->gpt_part_info.name, name1);
895 if ((ctr1 + ctr2 < 2) || (ctr1 != ctr2)) {
896 printf("Cannot swap partition names except in pairs.\n");
900 } else { /* rename */
901 if (strlen(name2) > PART_NAME_LEN) {
902 printf("Names longer than %d characters are truncated.\n", PART_NAME_LEN);
906 partnum = (int)simple_strtol(name1, NULL, 10);
907 if ((partnum < 0) || (partnum > numparts)) {
908 printf("Illegal partition number %s\n", name1);
912 ret = part_get_info(dev_desc, partnum, new_partitions);
916 /* U-Boot partition numbering starts at 1 */
917 list_for_each(pos, &disk_partitions) {
918 curr = list_entry(pos, struct disk_part, list);
920 strcpy((char *)curr->gpt_part_info.name, name2);
927 ret = create_gpt_partitions_list(numparts, disk_guid, partitions_list);
930 debug("NEW partitions_list is %s with %u chars\n", partitions_list,
931 (unsigned)strlen(partitions_list));
933 ret = set_gpt_info(dev_desc, partitions_list, &str_disk_guid,
934 &new_partitions, &part_count);
936 * Even though valid pointers are here passed into set_gpt_info(),
937 * it mallocs again, and there's no way to tell which failed.
942 debug("Writing new partition table\n");
943 ret = gpt_restore(dev_desc, disk_guid, new_partitions, numparts);
945 printf("Writing new partition table failed\n");
949 debug("Reading back new partition table\n");
951 * Empty the existing disk_partitions list, as otherwise the memory in
952 * the original list is unreachable.
955 numparts = get_gpt_info(dev_desc);
957 ret = numparts ? numparts : -ENODEV;
960 printf("new partition table with %d partitions is:\n", numparts);
964 #ifdef CONFIG_RANDOM_UUID
967 free(new_partitions);
968 free(partitions_list);
974 * do_gpt(): Perform GPT operations
976 * @param cmdtp - command name
981 * Return: zero on success; otherwise error
983 static int do_gpt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
985 int ret = CMD_RET_SUCCESS;
988 struct blk_desc *blk_dev_desc = NULL;
990 #ifndef CONFIG_CMD_GPT_RENAME
991 if (argc < 4 || argc > 5)
993 if (argc < 4 || argc > 6)
995 return CMD_RET_USAGE;
997 dev = (int)dectoul(argv[3], &ep);
998 if (!ep || ep[0] != '\0') {
999 printf("'%s' is not a number\n", argv[3]);
1000 return CMD_RET_USAGE;
1002 blk_dev_desc = blk_get_dev(argv[2], dev);
1003 if (!blk_dev_desc) {
1004 printf("%s: %s dev %d NOT available\n",
1005 __func__, argv[2], dev);
1006 return CMD_RET_FAILURE;
1009 if (strcmp(argv[1], "repair") == 0) {
1010 printf("Repairing GPT: ");
1011 ret = gpt_repair(blk_dev_desc);
1012 } else if ((strcmp(argv[1], "write") == 0) && (argc == 5)) {
1013 printf("Writing GPT: ");
1014 ret = gpt_default(blk_dev_desc, argv[4]);
1015 } else if ((strcmp(argv[1], "verify") == 0)) {
1016 ret = gpt_verify(blk_dev_desc, argv[4]);
1017 printf("Verify GPT: ");
1018 } else if ((strcmp(argv[1], "setenv") == 0)) {
1019 ret = gpt_setenv(blk_dev_desc, argv[4]);
1020 } else if ((strcmp(argv[1], "enumerate") == 0)) {
1021 ret = gpt_enumerate(blk_dev_desc);
1022 } else if (strcmp(argv[1], "guid") == 0) {
1023 ret = do_disk_guid(blk_dev_desc, argv[4]);
1024 #ifdef CONFIG_CMD_GPT_RENAME
1025 } else if (strcmp(argv[1], "read") == 0) {
1026 ret = do_get_gpt_info(blk_dev_desc, (argc == 5) ? argv[4] : NULL);
1027 } else if ((strcmp(argv[1], "swap") == 0) ||
1028 (strcmp(argv[1], "rename") == 0)) {
1029 ret = do_rename_gpt_parts(blk_dev_desc, argv[1], argv[4], argv[5]);
1032 return CMD_RET_USAGE;
1037 return CMD_RET_FAILURE;
1040 printf("success!\n");
1041 return CMD_RET_SUCCESS;
1044 U_BOOT_CMD(gpt, CONFIG_SYS_MAXARGS, 1, do_gpt,
1045 "GUID Partition Table",
1046 "<command> <interface> <dev> <partitions_list>\n"
1047 " - GUID partition table restoration and validity check\n"
1048 " Restore or verify GPT information on a device connected\n"
1051 " gpt repair mmc 0\n"
1052 " - repair the GPT on the device\n"
1053 " gpt write mmc 0 $partitions\n"
1054 " - write the GPT to device\n"
1055 " gpt verify mmc 0 $partitions\n"
1056 " - verify the GPT on device against $partitions\n"
1057 " gpt setenv mmc 0 $name\n"
1058 " - setup environment variables for partition $name:\n"
1059 " gpt_partition_addr, gpt_partition_size,\n"
1060 " gpt_partition_name, gpt_partition_entry\n"
1061 " gpt enumerate mmc 0\n"
1062 " - store list of partitions to gpt_partition_list environment variable\n"
1063 " read <interface> <dev>\n"
1064 " - read GPT into a data structure for manipulation\n"
1065 " gpt guid <interface> <dev>\n"
1066 " - print disk GUID\n"
1067 " gpt guid <interface> <dev> <varname>\n"
1068 " - set environment variable to disk GUID\n"
1071 " gpt guid mmc 0 varname\n"
1072 #ifdef CONFIG_CMD_GPT_RENAME
1073 "gpt partition renaming commands:\n"
1074 " gpt read <interface> <dev> [<varname>]\n"
1075 " - read GPT into a data structure for manipulation\n"
1076 " - read GPT partitions into environment variable\n"
1077 " gpt swap <interface> <dev> <name1> <name2>\n"
1078 " - change all partitions named name1 to name2\n"
1080 " gpt rename <interface> <dev> <part> <name>\n"
1081 " - rename the specified partition\n"
1083 " gpt swap mmc 0 foo bar\n"
1084 " gpt rename mmc 0 3 foo\n"