]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-04-15 Felix Zielcke <fzielcke@z-51.de>
authorfzielcke <fzielcke@localhost>
Wed, 15 Apr 2009 13:29:24 +0000 (13:29 +0000)
committerfzielcke <fzielcke@localhost>
Wed, 15 Apr 2009 13:29:24 +0000 (13:29 +0000)
* disk/lvm.c (grub_lvm_scan_device): Add `LVM' to the error messages,
that no multiple data or metadata areas are supported and `Unknown
metadata header'.

ChangeLog
disk/lvm.c

index 910529d3676f0808a0eef591f11ccb95d0e43d80..02e89cda865ab9ddbb2a77482d3833cee9967a0b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-04-15  Felix Zielcke  <fzielcke@z-51.de>
+
+       * disk/lvm.c (grub_lvm_scan_device): Add `LVM' to the error messages,
+       that no multiple data or metadata areas are supported and `Unknown 
+       metadata header'.
+
 2009-04-15  Vladimir Serbinenko <phcoder@gmail.com>
 
        Move loader out of the kernel
index d47d4c7b5093f82a763af8cb44887241a7f1e90d..9f6c197fead70b51191c93ecd516a7ae1aadf891 100644 (file)
@@ -263,7 +263,7 @@ grub_lvm_scan_device (const char *name)
   if (dlocn->offset)
     {
       grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
-                 "We don't support multiple data areas");
+                 "We don't support multiple LVM data areas");
                  
       goto fail;
     }
@@ -276,7 +276,7 @@ grub_lvm_scan_device (const char *name)
   if (dlocn->offset)
     {
       grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
-                 "We don't support multiple metadata areas");
+                 "We don't support multiple LVM metadata areas");
                  
       goto fail;
     }
@@ -296,7 +296,7 @@ grub_lvm_scan_device (const char *name)
       || (grub_le_to_cpu32 (mdah->version) != GRUB_LVM_FMTT_VERSION))
     {
       grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
-                 "Unknown metadata header");
+                 "Unknown LVM metadata header");
       goto fail2;
     }