loader/EFI: improve the help of the 'mode' command.

This commit is contained in:
rpaulo 2015-04-04 04:30:37 +00:00
parent 906001a53f
commit b30b5c0e83

View File

@ -285,7 +285,7 @@ command_configuration(int argc, char *argv[])
} }
COMMAND_SET(mode, "mode", "change or display text modes", command_mode); COMMAND_SET(mode, "mode", "change or display EFI text modes", command_mode);
static int static int
command_mode(int argc, char *argv[]) command_mode(int argc, char *argv[])
@ -331,7 +331,7 @@ command_mode(int argc, char *argv[])
} }
if (i != 0) if (i != 0)
printf("Choose the mode with \"col <mode number>\"\n"); printf("Select a mode with the command \"mode <number>\"\n");
return (CMD_OK); return (CMD_OK);
} }