diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-08-18 13:34:03 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-08-18 13:34:03 -0400 |
commit | c3d47c1de8db97e1bf6d4a075d9bcc42af010e34 (patch) | |
tree | a429946a38318008e2c2eb8dc0decd8a5ec5fb6e /system/alpha | |
parent | be14bc0a21e28392e0312cd4e8f97073b0ea0508 (diff) | |
download | gem5-c3d47c1de8db97e1bf6d4a075d9bcc42af010e34.tar.xz |
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.
Diffstat (limited to 'system/alpha')
-rw-r--r-- | system/alpha/console/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/alpha/console/console.c b/system/alpha/console/console.c index 6d0020370..e5be19f5f 100644 --- a/system/alpha/console/console.c +++ b/system/alpha/console/console.c @@ -621,7 +621,7 @@ unixBoot(int argc, char **argv) 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); /* |