* grub-core/commands/minicmd.c (GRUB_MOD_INIT): Add missing SIZE

argument.
	* util/grub-fstest.c (options): Add missing DEVICE part.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-02-05 11:32:11 +01:00
parent b525fd834d
commit b5c1f9bf41
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2012-02-05 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/commands/minicmd.c (GRUB_MOD_INIT): Add missing SIZE
argument.
* util/grub-fstest.c (options): Add missing DEVICE part.
2012-02-05 Vladimir Serbinenko <phcoder@gmail.com>
Clarify and unify messages.

View file

@ -187,7 +187,7 @@ GRUB_MOD_INIT(minicmd)
0, N_("Show this message."));
cmd_dump =
grub_register_command ("dump", grub_mini_cmd_dump,
N_("ADDR"), N_("Dump memory."));
N_("ADDR [SIZE]"), N_("Dump memory."));
cmd_rmmod =
grub_register_command ("rmmod", grub_mini_cmd_rmmod,
N_("MODULE"), N_("Remove a module."));

View file

@ -438,7 +438,7 @@ static struct argp_option options[] = {
{N_("hex FILE"), 0, 0 , OPTION_DOC, N_("Hex dump FILE."), 1},
{N_("crc FILE"), 0, 0 , OPTION_DOC, N_("Get crc32 checksum of FILE."), 1},
{N_("blocklist FILE"), 0, 0, OPTION_DOC, N_("Display blocklist of FILE."), 1},
{N_("xnu_uuid"), 0, 0, OPTION_DOC, N_("Compute XNU UUID of the device."), 1},
{N_("xnu_uuid DEVICE"), 0, 0, OPTION_DOC, N_("Compute XNU UUID of the device."), 1},
{"root", 'r', N_("DEVICE_NAME"), 0, N_("Set root device."), 2},
{"skip", 's', "N", 0, N_("Skip N bytes from output file."), 2},