]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/commands/minicmd.c (GRUB_MOD_INIT): Add missing SIZE
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sun, 5 Feb 2012 10:32:11 +0000 (11:32 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sun, 5 Feb 2012 10:32:11 +0000 (11:32 +0100)
argument.
* util/grub-fstest.c (options): Add missing DEVICE part.

ChangeLog
grub-core/commands/minicmd.c
util/grub-fstest.c

index 585699f641faee5e0d701347e547431e200b32f4..313d135aa6296dac4437912279cc4efd67d4027f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index f436cd55d03caf1bb1e7786f35dac890a439e821..be5cccce157002c0cdb7919b3a9fd344c41a702a 100644 (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."));
index 6978811449fe4490dcebed56bebfb8a710d31143..76ace544d4ccccc448a4b6cdb80cfc66760added 100644 (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},