support for SERIAL_POST (i.e. post to serial port as well as post port)
This commit is contained in:
parent
a63e80499c
commit
f6e3094a96
2 changed files with 4 additions and 0 deletions
|
|
@ -121,6 +121,9 @@ void error(char errmsg[])
|
|||
void intel_post(char value)
|
||||
{
|
||||
outb(value, 0x80);
|
||||
#ifdef SERIAL_POST
|
||||
printk(KERN_INFO "POST: 0x%02x\n", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
void intel_cache_on(unsigned long base, unsigned long totalram)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue