diff --git a/ChangeLog b/ChangeLog index 585699f64..313d135aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-02-05 Vladimir Serbinenko + + * 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 Clarify and unify messages. diff --git a/grub-core/commands/minicmd.c b/grub-core/commands/minicmd.c index f436cd55d..be5cccce1 100644 --- a/grub-core/commands/minicmd.c +++ b/grub-core/commands/minicmd.c @@ -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.")); diff --git a/util/grub-fstest.c b/util/grub-fstest.c index 697881144..76ace544d 100644 --- a/util/grub-fstest.c +++ b/util/grub-fstest.c @@ -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},