Fix to let FXP driver send messages.
Removed banner talking about the known hang-bug (it's fixed, practically speaking).
This commit is contained in:
parent
e5a694b126
commit
cafbbedbba
2 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,6 @@ int how; /* 0 = halt, 1 = reboot, 2 = panic!, ... */
|
|||
shutdown(how); /* TTY isn't scheduled */
|
||||
} else {
|
||||
kprintf("\nNotifying system services about MINIX shutdown.\n", NO_ARG);
|
||||
kprintf("Known bug: hitting a key before done will hang the monitor.\n", NO_ARG);
|
||||
stop_sequence(&shutdown_timer);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -105,6 +105,7 @@ message *m_ptr; /* pointer to request message */
|
|||
send_mask_allow(proc_addr(IS_PROC_NR)->p_sendmask, proc_nr);
|
||||
send_mask_allow(proc_addr(CLOCK)->p_sendmask, proc_nr);
|
||||
send_mask_allow(proc_addr(SYSTASK)->p_sendmask, proc_nr);
|
||||
send_mask_allow(proc_addr(FXP)->p_sendmask, proc_nr);
|
||||
return(OK);
|
||||
}
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue