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> 2009-06-16 Pavel Roskin <proski@gnu.org>
* boot/i386/pc/boot.S: Remove root_drive. Assert offset of * boot/i386/pc/boot.S: Remove root_drive. Assert offset of

View file

@ -113,7 +113,7 @@ static grub_extcmd_t cmd;
GRUB_MOD_INIT(echo) GRUB_MOD_INIT(echo)
{ {
cmd = grub_register_extcmd ("echo", grub_cmd_echo, GRUB_COMMAND_FLAG_BOTH, 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); options);
} }