mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Don't call into the TTY layer when inside kdb.
We should just leave the underlying TTY objects alone when scrolling around in KDB. It should be handled by Syscons exclusively. Reported by: pluknet gmail com
This commit is contained in:
parent
5bd65606f4
commit
8ddd1f723d
1 changed files with 1 additions and 1 deletions
|
|
@ -3277,7 +3277,7 @@ next_code:
|
|||
sc_draw_cursor_image(scp);
|
||||
}
|
||||
tp = SC_DEV(sc, scp->index);
|
||||
if (tty_opened(tp))
|
||||
if (!kdb_active && tty_opened(tp))
|
||||
sctty_outwakeup(tp);
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue