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)
357 ret = get_gpt_info(dev_desc);
368 * set_gpt_info(): Fill partition information from string
369 * function allocates memory, remember to free!
371 * @param dev_desc - pointer block device descriptor
372 * @param str_part - pointer to string with partition information
373 * @param str_disk_guid - pointer to pointer to allocated string with disk guid
374 * @param partitions - pointer to pointer to allocated partitions array
375 * @param parts_count - number of partitions
377 * @return - zero on success, otherwise error
380 static int set_gpt_info(struct blk_desc *dev_desc,
381 const char *str_part,
382 char **str_disk_guid,
383 struct disk_partition **partitions,
390 struct disk_partition *parts;
392 uint64_t size_ll, start_ll;
394 int max_str_part = calc_parts_list_len(MAX_SEARCH_PARTITIONS);
396 debug("%s: lba num: 0x%x %d\n", __func__,
397 (unsigned int)dev_desc->lba, (unsigned int)dev_desc->lba);
399 if (str_part == NULL)
402 str = strdup(str_part);
406 /* extract disk guid */
408 val = extract_val(str, "uuid_disk");
410 #ifdef CONFIG_RANDOM_UUID
411 *str_disk_guid = malloc(UUID_STR_LEN + 1);
412 if (*str_disk_guid == NULL)
414 gen_rand_uuid_str(*str_disk_guid, UUID_STR_FORMAT_STD);
420 val = strsep(&val, ";");
421 if (extract_env(val, &p))
423 *str_disk_guid = strdup(p);
425 /* Move s to first partition */
429 printf("Error: is the partitions string NULL-terminated?\n");
432 if (strnlen(s, max_str_part) == 0)
435 i = strnlen(s, max_str_part) - 1;
439 /* calculate expected number of partitions */
447 /* allocate memory for partitions */
448 parts = calloc(sizeof(struct disk_partition), p_count);
452 /* retrieve partitions data from string */
453 for (i = 0; i < p_count; i++) {
454 tok = strsep(&s, ";");
460 val = extract_val(tok, "uuid");
462 /* 'uuid' is optional if random uuid's are enabled */
463 #ifdef CONFIG_RANDOM_UUID
464 gen_rand_uuid_str(parts[i].uuid, UUID_STR_FORMAT_STD);
470 if (extract_env(val, &p))
472 if (strnlen(p, max_str_part) >= sizeof(parts[i].uuid)) {
473 printf("Wrong uuid format for partition %d\n", i);
477 strncpy((char *)parts[i].uuid, p, max_str_part);
480 #ifdef CONFIG_PARTITION_TYPE_GUID
482 val = extract_val(tok, "type");
484 /* 'type' is optional */
485 if (extract_env(val, &p))
487 if (strnlen(p, max_str_part) >= sizeof(parts[i].type_guid)) {
488 printf("Wrong type guid format for partition %d\n",
493 strncpy((char *)parts[i].type_guid, p, max_str_part);
498 val = extract_val(tok, "name");
499 if (!val) { /* name is mandatory */
503 if (extract_env(val, &p))
505 if (strnlen(p, max_str_part) >= sizeof(parts[i].name)) {
509 strncpy((char *)parts[i].name, p, max_str_part);
513 val = extract_val(tok, "size");
514 if (!val) { /* 'size' is mandatory */
518 if (extract_env(val, &p))
520 if ((strcmp(p, "-") == 0)) {
521 /* Let part efi module to auto extend the size */
524 size_ll = ustrtoull(p, &p, 0);
525 parts[i].size = lldiv(size_ll, dev_desc->blksz);
531 val = extract_val(tok, "start");
532 if (val) { /* start address is optional */
533 if (extract_env(val, &p))
535 start_ll = ustrtoull(p, &p, 0);
536 parts[i].start = lldiv(start_ll, dev_desc->blksz);
540 offset += parts[i].size + parts[i].start;
543 if (found_key(tok, "bootable"))
544 parts[i].bootable = PART_BOOTABLE;
547 *parts_count = p_count;
554 free(*str_disk_guid);
560 static int gpt_default(struct blk_desc *blk_dev_desc, const char *str_part)
565 struct disk_partition *partitions = NULL;
567 /* fill partitions */
568 ret = set_gpt_info(blk_dev_desc, str_part,
569 &str_disk_guid, &partitions, &part_count);
572 printf("No partition list provided\n");
574 printf("Missing disk guid\n");
575 if ((ret == -3) || (ret == -4))
576 printf("Partition list incomplete\n");
580 /* save partitions layout to disk */
581 ret = gpt_restore(blk_dev_desc, str_disk_guid, partitions, part_count);
588 static int gpt_verify(struct blk_desc *blk_dev_desc, const char *str_part)
590 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1,
591 blk_dev_desc->blksz);
592 struct disk_partition *partitions = NULL;
593 gpt_entry *gpt_pte = NULL;
598 /* fill partitions */
599 ret = set_gpt_info(blk_dev_desc, str_part,
600 &str_disk_guid, &partitions, &part_count);
603 printf("No partition list provided - only basic check\n");
604 ret = gpt_verify_headers(blk_dev_desc, gpt_head,
609 printf("Missing disk guid\n");
610 if ((ret == -3) || (ret == -4))
611 printf("Partition list incomplete\n");
615 /* Check partition layout with provided pattern */
616 ret = gpt_verify_partitions(blk_dev_desc, partitions, part_count,
626 * gpt_enumerate() - Enumerate partition names into environment variable.
628 * Enumerate partition names. Partition names are stored in gpt_partition_list
629 * environment variable. Each partition name is delimited by space.
631 * @desc: block device descriptor
633 * @Return: '0' on success and -ve error on failure
635 static int gpt_enumerate(struct blk_desc *desc)
637 struct part_driver *first_drv, *part_drv;
638 int str_len = 0, tmp_len;
639 char part_list[2048];
644 n_drvs = part_driver_get_count();
646 printf("Failed to get partition driver count\n");
650 first_drv = part_driver_get_first();
651 for (part_drv = first_drv; part_drv != first_drv + n_drvs; part_drv++) {
652 struct disk_partition pinfo;
656 for (i = 1; i < part_drv->max_entries; i++) {
657 ret = part_drv->get_info(desc, i, &pinfo);
659 /* no more entries in table */
663 ptr = &part_list[str_len];
664 tmp_len = strlen((const char *)pinfo.name);
668 if (str_len > sizeof(part_list)) {
669 printf("Error insufficient memory\n");
672 strcpy(ptr, (const char *)pinfo.name);
673 /* One byte for space(" ") delimiter */
678 part_list[strlen(part_list) - 1] = 0;
679 debug("setenv gpt_partition_list %s\n", part_list);
681 return env_set("gpt_partition_list", part_list);
685 * gpt_setenv_part_variables() - setup partition environmental variables
687 * Setup the gpt_partition_name, gpt_partition_entry, gpt_partition_addr
688 * and gpt_partition_size environment variables.
690 * @pinfo: pointer to disk partition
691 * @i: partition entry
693 * @Return: '0' on success and -ENOENT on failure
695 static int gpt_setenv_part_variables(struct disk_partition *pinfo, int i)
699 ret = env_set_hex("gpt_partition_addr", pinfo->start);
703 ret = env_set_hex("gpt_partition_size", pinfo->size);
707 ret = env_set_ulong("gpt_partition_entry", i);
711 ret = env_set("gpt_partition_name", (const char *)pinfo->name);
722 * gpt_setenv() - Dynamically setup environment variables.
724 * Dynamically setup environment variables for name, index, offset and size
725 * for partition in GPT table after running "gpt setenv" for a partition name.
727 * @desc: block device descriptor
728 * @name: partition name
730 * @Return: '0' on success and -ve err on failure
732 static int gpt_setenv(struct blk_desc *desc, const char *name)
734 struct part_driver *first_drv, *part_drv;
738 n_drvs = part_driver_get_count();
740 printf("Failed to get partition driver count\n");
744 first_drv = part_driver_get_first();
745 for (part_drv = first_drv; part_drv != first_drv + n_drvs; part_drv++) {
746 struct disk_partition pinfo;
749 for (i = 1; i < part_drv->max_entries; i++) {
750 ret = part_drv->get_info(desc, i, &pinfo);
752 /* no more entries in table */
756 if (!strcmp(name, (const char *)pinfo.name)) {
757 /* match found, setup environment variables */
758 ret = gpt_setenv_part_variables(&pinfo, i);
771 static int do_disk_guid(struct blk_desc *dev_desc, char * const namestr)
774 char disk_guid[UUID_STR_LEN + 1];
776 ret = get_disk_guid(dev_desc, disk_guid);
778 return CMD_RET_FAILURE;
781 env_set(namestr, disk_guid);
783 printf("%s\n", disk_guid);
788 #ifdef CONFIG_CMD_GPT_RENAME
789 static int do_rename_gpt_parts(struct blk_desc *dev_desc, char *subcomm,
790 char *name1, char *name2)
792 struct list_head *pos;
793 struct disk_part *curr;
794 struct disk_partition *new_partitions = NULL;
795 char disk_guid[UUID_STR_LEN + 1];
796 char *partitions_list, *str_disk_guid = NULL;
798 int partlistlen, ret, numparts = 0, partnum, i = 1, ctr1 = 0, ctr2 = 0;
800 if ((subcomm == NULL) || (name1 == NULL) || (name2 == NULL) ||
801 (strcmp(subcomm, "swap") && (strcmp(subcomm, "rename"))))
804 ret = get_disk_guid(dev_desc, disk_guid);
808 * Allocates disk_partitions, requiring matching call to del_gpt_info()
811 numparts = get_gpt_info(dev_desc);
813 return numparts ? numparts : -ENODEV;
815 partlistlen = calc_parts_list_len(numparts);
816 partitions_list = malloc(partlistlen);
817 if (!partitions_list) {
821 memset(partitions_list, '\0', partlistlen);
823 ret = create_gpt_partitions_list(numparts, disk_guid, partitions_list);
825 free(partitions_list);
829 * Uncomment the following line to print a string that 'gpt write'
830 * or 'gpt verify' will accept as input.
832 debug("OLD partitions_list is %s with %u chars\n", partitions_list,
833 (unsigned)strlen(partitions_list));
835 /* set_gpt_info allocates new_partitions and str_disk_guid */
836 ret = set_gpt_info(dev_desc, partitions_list, &str_disk_guid,
837 &new_partitions, &part_count);
841 if (!strcmp(subcomm, "swap")) {
842 if ((strlen(name1) > PART_NAME_LEN) || (strlen(name2) > PART_NAME_LEN)) {
843 printf("Names longer than %d characters are truncated.\n", PART_NAME_LEN);
847 list_for_each(pos, &disk_partitions) {
848 curr = list_entry(pos, struct disk_part, list);
849 if (!strcmp((char *)curr->gpt_part_info.name, name1)) {
850 strcpy((char *)curr->gpt_part_info.name, name2);
852 } else if (!strcmp((char *)curr->gpt_part_info.name, name2)) {
853 strcpy((char *)curr->gpt_part_info.name, name1);
857 if ((ctr1 + ctr2 < 2) || (ctr1 != ctr2)) {
858 printf("Cannot swap partition names except in pairs.\n");
862 } else { /* rename */
863 if (strlen(name2) > PART_NAME_LEN) {
864 printf("Names longer than %d characters are truncated.\n", PART_NAME_LEN);
868 partnum = (int)simple_strtol(name1, NULL, 10);
869 if ((partnum < 0) || (partnum > numparts)) {
870 printf("Illegal partition number %s\n", name1);
874 ret = part_get_info(dev_desc, partnum, new_partitions);
878 /* U-Boot partition numbering starts at 1 */
879 list_for_each(pos, &disk_partitions) {
880 curr = list_entry(pos, struct disk_part, list);
882 strcpy((char *)curr->gpt_part_info.name, name2);
889 ret = create_gpt_partitions_list(numparts, disk_guid, partitions_list);
892 debug("NEW partitions_list is %s with %u chars\n", partitions_list,
893 (unsigned)strlen(partitions_list));
895 ret = set_gpt_info(dev_desc, partitions_list, &str_disk_guid,
896 &new_partitions, &part_count);
898 * Even though valid pointers are here passed into set_gpt_info(),
899 * it mallocs again, and there's no way to tell which failed.
904 debug("Writing new partition table\n");
905 ret = gpt_restore(dev_desc, disk_guid, new_partitions, numparts);
907 printf("Writing new partition table failed\n");
911 debug("Reading back new partition table\n");
913 * Empty the existing disk_partitions list, as otherwise the memory in
914 * the original list is unreachable.
917 numparts = get_gpt_info(dev_desc);
919 ret = numparts ? numparts : -ENODEV;
922 printf("new partition table with %d partitions is:\n", numparts);
926 #ifdef CONFIG_RANDOM_UUID
929 free(new_partitions);
930 free(partitions_list);
936 * do_gpt(): Perform GPT operations
938 * @param cmdtp - command name
943 * @return zero on success; otherwise error
945 static int do_gpt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
947 int ret = CMD_RET_SUCCESS;
950 struct blk_desc *blk_dev_desc = NULL;
952 #ifndef CONFIG_CMD_GPT_RENAME
953 if (argc < 4 || argc > 5)
955 if (argc < 4 || argc > 6)
957 return CMD_RET_USAGE;
959 dev = (int)simple_strtoul(argv[3], &ep, 10);
960 if (!ep || ep[0] != '\0') {
961 printf("'%s' is not a number\n", argv[3]);
962 return CMD_RET_USAGE;
964 blk_dev_desc = blk_get_dev(argv[2], dev);
966 printf("%s: %s dev %d NOT available\n",
967 __func__, argv[2], dev);
968 return CMD_RET_FAILURE;
971 if ((strcmp(argv[1], "write") == 0) && (argc == 5)) {
972 printf("Writing GPT: ");
973 ret = gpt_default(blk_dev_desc, argv[4]);
974 } else if ((strcmp(argv[1], "verify") == 0)) {
975 ret = gpt_verify(blk_dev_desc, argv[4]);
976 printf("Verify GPT: ");
977 } else if ((strcmp(argv[1], "setenv") == 0)) {
978 ret = gpt_setenv(blk_dev_desc, argv[4]);
979 } else if ((strcmp(argv[1], "enumerate") == 0)) {
980 ret = gpt_enumerate(blk_dev_desc);
981 } else if (strcmp(argv[1], "guid") == 0) {
982 ret = do_disk_guid(blk_dev_desc, argv[4]);
983 #ifdef CONFIG_CMD_GPT_RENAME
984 } else if (strcmp(argv[1], "read") == 0) {
985 ret = do_get_gpt_info(blk_dev_desc);
986 } else if ((strcmp(argv[1], "swap") == 0) ||
987 (strcmp(argv[1], "rename") == 0)) {
988 ret = do_rename_gpt_parts(blk_dev_desc, argv[1], argv[4], argv[5]);
991 return CMD_RET_USAGE;
996 return CMD_RET_FAILURE;
999 printf("success!\n");
1000 return CMD_RET_SUCCESS;
1003 U_BOOT_CMD(gpt, CONFIG_SYS_MAXARGS, 1, do_gpt,
1004 "GUID Partition Table",
1005 "<command> <interface> <dev> <partitions_list>\n"
1006 " - GUID partition table restoration and validity check\n"
1007 " Restore or verify GPT information on a device connected\n"
1010 " gpt write mmc 0 $partitions\n"
1011 " - write the GPT to device\n"
1012 " gpt verify mmc 0 $partitions\n"
1013 " - verify the GPT on device against $partitions\n"
1014 " gpt setenv mmc 0 $name\n"
1015 " - setup environment variables for partition $name:\n"
1016 " gpt_partition_addr, gpt_partition_size,\n"
1017 " gpt_partition_name, gpt_partition_entry\n"
1018 " gpt enumerate mmc 0\n"
1019 " - store list of partitions to gpt_partition_list environment variable\n"
1020 " read <interface> <dev>\n"
1021 " - read GPT into a data structure for manipulation\n"
1022 " gpt guid <interface> <dev>\n"
1023 " - print disk GUID\n"
1024 " gpt guid <interface> <dev> <varname>\n"
1025 " - set environment variable to disk GUID\n"
1028 " gpt guid mmc 0 varname\n"
1029 #ifdef CONFIG_CMD_GPT_RENAME
1030 "gpt partition renaming commands:\n"
1031 " gpt read <interface> <dev>\n"
1032 " - read GPT into a data structure for manipulation\n"
1033 " gpt swap <interface> <dev> <name1> <name2>\n"
1034 " - change all partitions named name1 to name2\n"
1036 " gpt rename <interface> <dev> <part> <name>\n"
1037 " - rename the specified partition\n"
1039 " gpt swap mmc 0 foo bar\n"
1040 " gpt rename mmc 0 3 foo\n"