diff options
author | Kevin Hilman <khilman@baylibre.com> | 2020-02-12 15:56:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-12 15:56:27 -0800 |
commit | 3e8863a724de93baee3efaf5ea7abbdbd1a11d77 (patch) | |
tree | 1569862ef68347f6cff9ffee645a25e215f9b82c /README.md | |
parent | d37a6f3c7f43b1352f2dd0cf2cc2c4bd4baacf20 (diff) | |
parent | d41c96cb66fbbe436c272a10384c006db4791f9e (diff) |
Merge pull request #113 from slawr/stevel/upstream-ser2net-readme-improvements
README.md: Correction / improvement to ser2net documentation
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -328,7 +328,7 @@ boards: interfacenum: (optional) The interfacenumber of the serial. (Used with two serial in one device) use_conmux: True/False (Use conmux-console instead of ser2net) use_ser2net: True/False (Deprecated, ser2net is the default uart handler) - ser2net_options (optional) A list of ser2net options to add + ser2net_options: (optional) A list of ser2net options to add - option1 - option2 use_screen: True/False (Use screen via ssh instead of ser2net) @@ -351,6 +351,12 @@ Example: Bus 001 Device 054: ID 0403:6001 Future Technology Devices International, Ltd FT232 Serial (UART) IC ``` This device must use "0403" for idvendor and 6001 for idproduct. +* Some boards reset serial on power on. This can cause ser2net/telnet to disconnect resulting in the LAVA Worker being unable to program the board. This may be mitigated by passing LOCAL as an option to ser2net in the boards.yaml. +Example: +``` + ser2net_options: + - LOCAL +``` Note on connection_command: connection_command is for people which want to use other custom way than ser2net to handle the console. |