Revision: 2118
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2118
Author: fzielcke
Date: 2009-04-15 13:29:24 +0000 (Wed, 15 Apr 2009)
Log Message:
-----------
2009-04-15 Felix Zielcke <[email protected]>
* 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'.
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/disk/lvm.c
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-04-15 12:45:50 UTC (rev 2117)
+++ trunk/grub2/ChangeLog 2009-04-15 13:29:24 UTC (rev 2118)
@@ -1,3 +1,9 @@
+2009-04-15 Felix Zielcke <[email protected]>
+
+ * 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 <[email protected]>
Move loader out of the kernel
Modified: trunk/grub2/disk/lvm.c
===================================================================
--- trunk/grub2/disk/lvm.c 2009-04-15 12:45:50 UTC (rev 2117)
+++ trunk/grub2/disk/lvm.c 2009-04-15 13:29:24 UTC (rev 2118)
@@ -263,7 +263,7 @@
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 @@
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_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;
}