Kernel: Enable ECHOE and ECHOK, support VKILL, fix VEOF

This commit is contained in:
2025-06-02 16:26:53 +03:00
parent 775c77c0fa
commit 4c0b7d44b4
4 changed files with 10 additions and 7 deletions

View File

@@ -162,7 +162,7 @@ namespace Kernel
.c_iflag = 0,
.c_oflag = 0,
.c_cflag = CS8,
.c_lflag = ECHO | ICANON | ISIG,
.c_lflag = ECHO | ECHOE | ECHOK | ICANON | ISIG,
.c_cc = TTY_DEFAULT_TERMIOS_CC,
.c_ospeed = B38400,
.c_ispeed = B38400,