2009-06-16 James Jarvis <James.Jarvis@ed.ac.uk>

* commands/help.c GRUB_MOD_INIT(echo): Fix the help output of
	`echo' command.
This commit is contained in:
fzielcke 2009-06-16 16:06:49 +00:00
parent 3ef17a2ebf
commit 0644f96c9f
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2009-06-16 James Jarvis <James.Jarvis@ed.ac.uk>
* commands/help.c GRUB_MOD_INIT(echo): Fix the help output of
`echo' command.
2009-06-16 Pavel Roskin <proski@gnu.org>
* boot/i386/pc/boot.S: Remove root_drive. Assert offset of
@ -62,7 +67,7 @@
* loader/i386/multiboot.c (grub_multiboot_get_bootdev): fix partition
handling
2009-06-13 Jun Inoue <jun.lambda@gmail.com>
2009-06-13 Jun Inoue <jun.lambda@gmail.com>
* util/grub-mkconfig.in: Fix parsing of --output option.

View file

@ -113,7 +113,7 @@ static grub_extcmd_t cmd;
GRUB_MOD_INIT(echo)
{
cmd = grub_register_extcmd ("echo", grub_cmd_echo, GRUB_COMMAND_FLAG_BOTH,
"echo [-e|-n] FILE", "Display a line of text.",
"echo [-e|-n] STRING", "Display a line of text.",
options);
}