svn commit: r281061 - head/sys/boot/efi/loader

Rui Paulo rpaulo at FreeBSD.org
Sat Apr 4 04:30:39 UTC 2015


Author: rpaulo
Date: Sat Apr  4 04:30:37 2015
New Revision: 281061
URL: https://svnweb.freebsd.org/changeset/base/281061

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

Modified:
  head/sys/boot/efi/loader/main.c

Modified: head/sys/boot/efi/loader/main.c
==============================================================================
--- head/sys/boot/efi/loader/main.c	Sat Apr  4 04:29:31 2015	(r281060)
+++ head/sys/boot/efi/loader/main.c	Sat Apr  4 04:30:37 2015	(r281061)
@@ -285,7 +285,7 @@ command_configuration(int argc, char *ar
 }
 
 
-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 <mode number>\"\n");
+		printf("Select a mode with the command \"mode <number>\"\n");
 
 	return (CMD_OK);
 }


More information about the svn-src-all mailing list