* [PATCH][TRIVIAL] Improve friendliness of misconfigured bootloader error
@ 2005-06-23 3:37 Anthony Liguori
0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2005-06-23 3:37 UTC (permalink / raw)
To: xen-devel
[-- Attachment #1: Type: text/plain, Size: 554 bytes --]
If a user specifies an improper grub.conf entry for Xen (does not
specify a module line or mispells module), Xen outputs the following error:
FATAL ERROR: Require at least one Multiboot module.
The attached patch changes this error to:
FATAL ERROR: dom0 kernel not specified! Check bootloader configuration.
I've had a few people ask for help debugging this problem and usually
they have no idea what a multiboot module is so the error is not helpful
to them.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Regards,
Anthony Liguori
[-- Attachment #2: nicer_startup_msg.diff --]
[-- Type: text/x-patch, Size: 477 bytes --]
--- xen/arch/x86/setup.c~ 2005-06-22 14:45:43.000000000 -0500
+++ xen/arch/x86/setup.c 2005-06-22 22:33:13.331925064 -0500
@@ -262,7 +262,7 @@
/* Check that we have at least one Multiboot module. */
if ( !(mbi->flags & MBI_MODULES) || (mbi->mods_count == 0) )
{
- printk("FATAL ERROR: Require at least one Multiboot module.\n");
+ printk("FATAL ERROR: dom0 kernel not specified! Check bootloader configuration.\n");
EARLY_FAIL();
}
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-06-23 3:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-23 3:37 [PATCH][TRIVIAL] Improve friendliness of misconfigured bootloader error Anthony Liguori
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.