summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Hilman <khilman@baylibre.com>2020-02-12 15:56:27 -0800
committerGitHub <noreply@github.com>2020-02-12 15:56:27 -0800
commit3e8863a724de93baee3efaf5ea7abbdbd1a11d77 (patch)
tree1569862ef68347f6cff9ffee645a25e215f9b82c
parentd37a6f3c7f43b1352f2dd0cf2cc2c4bd4baacf20 (diff)
parentd41c96cb66fbbe436c272a10384c006db4791f9e (diff)
Merge pull request #113 from slawr/stevel/upstream-ser2net-readme-improvements
README.md: Correction / improvement to ser2net documentation
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index 2c41ff3..b9fd43d 100644
--- a/README.md
+++ b/README.md
@@ -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.