From b30b5c0e83db3ffb3a6303b3d0cb2f523dd74b2c Mon Sep 17 00:00:00 2001 From: rpaulo Date: Sat, 4 Apr 2015 04:30:37 +0000 Subject: [PATCH] loader/EFI: improve the help of the 'mode' command. --- sys/boot/efi/loader/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/boot/efi/loader/main.c b/sys/boot/efi/loader/main.c index d6b2b53c0368..1c89ddf66e45 100644 --- a/sys/boot/efi/loader/main.c +++ b/sys/boot/efi/loader/main.c @@ -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 command_mode(int argc, char *argv[]) @@ -331,7 +331,7 @@ command_mode(int argc, char *argv[]) } if (i != 0) - printf("Choose the mode with \"col \"\n"); + printf("Select a mode with the command \"mode \"\n"); return (CMD_OK); }