summaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2003-08-09 15:00:59 -0400
committerAndy Grover <agrover@groveronline.com>2003-08-09 15:00:59 -0400
commit68e4ad79294e8ff5361d4fc74472c121d2e2a9f2 (patch)
tree1ef761326ed5f4f119afad009051bdb9f9f6e2dc /init
parent0a5d9307f2f89ef3c87cc1955cf3f3366ff8b143 (diff)
ACPI from 2.4:
build: add ACPI_HT, delete ACPI_HT_ONLY boot: add acpi={force, off, ht}; delete "noht", "acpismp=" add DMI blacklist from UnitedLinux
Diffstat (limited to 'init')
-rw-r--r--init/do_mounts.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/init/do_mounts.c b/init/do_mounts.c
index 0869bc8e6a2f..4486e056d57f 100644
--- a/init/do_mounts.c
+++ b/init/do_mounts.c
@@ -268,6 +268,16 @@ retry:
printk("VFS: Cannot open root device \"%s\" or %s\n",
root_device_name, b);
printk("Please append a correct \"root=\" boot option\n");
+#ifdef __i386__
+ {
+ extern void dmi_dump_system(void);
+ printk ("You may want to retry boot with pci=noacpi, "
+ "acpi=ht, or acpi=off on the command line.\n");
+ printk ("If one of them helps please report it with "
+ "the following lines:\n");
+ dmi_dump_system();
+ }
+#endif
panic("VFS: Unable to mount root fs on %s", b);
}
panic("VFS: Unable to mount root fs on %s", __bdevname(ROOT_DEV, b));