From 0c9e877bb62f6581136a07e06beeef7de99f1d8c Mon Sep 17 00:00:00 2001 From: MickLesk Date: Sun, 5 Apr 2026 19:23:24 +0200 Subject: [PATCH] fix(otbr): add blank line before TCP socat example comment --- install/openthread-br-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/openthread-br-install.sh b/install/openthread-br-install.sh index f156e924..fb5131e1 100644 --- a/install/openthread-br-install.sh +++ b/install/openthread-br-install.sh @@ -77,6 +77,7 @@ cat <<'EOF' >/etc/default/otbr-agent # USB example: # OTBR_AGENT_OPTS="-I wpan0 -B eth0 --vendor-name OpenThread --model-name BorderRouter --rest-listen-address 0.0.0.0 --rest-listen-port 8081 spinel+hdlc+uart:///dev/ttyACM0" # TCP via socat (for network-attached RCP like SLZB-06/SLZB-MR3): + # OTBR_AGENT_OPTS="-I wpan0 -B eth0 --vendor-name OpenThread --model-name BorderRouter --rest-listen-address 0.0.0.0 --rest-listen-port 8081 spinel+hdlc+forkpty:///usr/bin/socat?forkpty-arg=-,rawer&forkpty-arg=tcp:IP:PORT trel://eth0" OTBR_AGENT_OPTS="-I wpan0 -B eth0 --vendor-name OpenThread --model-name BorderRouter --rest-listen-address 0.0.0.0 --rest-listen-port 8081 spinel+hdlc+uart:///dev/ttyACM0" EOF