Fix console to work on all systems.
console/console.c: CONS_REM (remote console) doesn't work on Tru64. Use CONS_DZ which seems to work alright everywhere.
This commit is contained in:
parent
be14bc0a21
commit
c3d47c1de8
1 changed files with 1 additions and 1 deletions
|
@ -621,7 +621,7 @@ unixBoot(int argc, char **argv)
|
||||||
|
|
||||||
bzero((char *)rpb_ctb, sizeof(struct ctb_tt));
|
bzero((char *)rpb_ctb, sizeof(struct ctb_tt));
|
||||||
|
|
||||||
rpb_ctb->rpb_type = CONS_REM;
|
rpb_ctb->rpb_type = CONS_DZ;
|
||||||
rpb_ctb->rpb_length = sizeof(ctb_tt) - sizeof(rpb_ctb);
|
rpb_ctb->rpb_length = sizeof(ctb_tt) - sizeof(rpb_ctb);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue