Hi,
my machine just stopped at boot because of a GRUB error with the error
message:
"error: the symbol 'grub_env_find' not found."
The grammar of that error message is a bit weird so I changed the
sentence into a more common grammar for error messages:
"error: symbol not found: 'grub_env_find'."
Please find the attached mini patch ;).
Adrian
--- kern/dl.c 2010-03-23 17:10:21.000000000 +0100
+++ kern/dl.c.new2 2010-03-23 17:13:56.000000000 +0100
@@ -348,7 +348,7 @@
sym->st_value = (Elf_Addr) grub_dl_resolve_symbol (name);
if (! sym->st_value)
return grub_error (GRUB_ERR_BAD_MODULE,
- "the symbol `%s' not found", name);
+ "symbol not found: `%s'", name);
}
else
{
_______________________________________________
Grub-devel mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/grub-devel