FOC: Disable the virtual console echo

This patch is needed for the Genode KDB terminal.

Fixes ssumpf/foc#1.
This commit is contained in:
Christian Prochaska
2013-02-26 15:50:05 +01:00
committed by Sebastian Sumpf
parent b1bffcdba8
commit 1d8bc40fd9

View File

@@ -51,9 +51,8 @@ FIASCO_DEFINE_KOBJ(Vlog);
PUBLIC
Vlog::Vlog()
: _irq(0),
_i_flags(F_ICRNL), _o_flags(F_ONLCR), _l_flags(F_ECHO)
_i_flags(F_ICRNL), _o_flags(F_ONLCR), _l_flags(0)
{
Vkey::set_echo(Vkey::Echo_crnl);
// CAP idx 5 is the initial kernel stream
initial_kobjects.register_obj(this, 5);
}