Skip to content

Commit 563ef28

Browse files
committed
Add known issue to README.md in tty-resizer
1 parent 386a6d7 commit 563ef28

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

tty-resizer/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,15 @@ Both `Row` and `Col` are unsigned short.
8585
When `0x05` (ENQ) is received in tty-resizer, subsequent chars are captured in tty-resizer, and they will not propagate to real TTY. `t` is terminator, then capture mode in tty-resizer is finished, and subsequent chars are propagated to real TTY, and `TIOCSWINSZ` ioctl would be issued to the specified TTY. `c` means "cancel" for tty-resizer, then capture mode will be finished, and happens nothing.
8686

8787
0-9 and `;`, `t`, `c` is valid chars on capture mode. Capture mode will be aborted when other char is received - it would be treated as `c`.
88+
89+
# Known issue
90+
91+
Some strings for resizing might be shown on your serial console in earlier phase (especially just after the boot) like following:
92+
93+
```
94+
[root@raspberry-pi ~]# 30;122t31;122t31;123t31;124t
95+
```
96+
97+
You should wait few seconds if you start tty-resizer from `tty-resizer.service` when you encounter this problem.
98+
99+
This might be caused that `ioctl` to TTY is failed. So `tty-resizer.service` in this source would restart when the issue happens to avoid it. Then it will work fine.

0 commit comments

Comments
 (0)