diff options
author | Marek Vasut | 2023-12-10 22:25:07 +0100 |
---|---|---|
committer | Tom Rini | 2023-12-20 14:13:20 -0500 |
commit | 97135d9f4220e54b38f69a3f2416b2fd9d8f378c (patch) | |
tree | b3c994e6ef98ca37159ac92dd751af8346798ebb | |
parent | 738b34668f289ba98e3657f86e3a58385c09059d (diff) |
cmd: part: Cover both part type entries with GUID ifdef
The 'part type' subcommand depends on GUID partition table support.
The help text exposes one of two 'part type' subcommand entries,
hide both in case GUID partition table support is not enabled to
avoid confusing users.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | cmd/part.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/part.c b/cmd/part.c index 0ce190005d3..c75f85acd52 100644 --- a/cmd/part.c +++ b/cmd/part.c @@ -308,9 +308,9 @@ U_BOOT_CMD( #ifdef CONFIG_PARTITION_TYPE_GUID "part type <interface> <dev>:<part>\n" " - print partition type\n" -#endif "part type <interface> <dev>:<part> <varname>\n" " - set environment variable to partition type\n" +#endif "part set <interface> <dev> type\n" " - set partition type for a device\n" "part types\n" |