Print a failure message if a sibling CPU fails to start.

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2031 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Steven J. Magnani 2005-09-14 13:52:06 +00:00
parent 0b1a5a4a92
commit 059182cc4f
1 changed files with 5 additions and 1 deletions

View File

@ -67,7 +67,11 @@ void intel_sibling_init(device_t cpu)
new->path.u.apic.apic_id);
#endif
/* Start the new cpu */
start_cpu(new);
if (!start_cpu(new)) {
/* Record the error in cpu? */
printk_err("CPU %u would not start!\n",
new->path.u.apic.apic_id);
}
}
}