aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2019-08-23 16:07:12 +0200
committerOleksij Rempel <linux@rempel-privat.de>2020-01-29 05:37:05 +0000
commit0d598535a30ea553f5a5d4a0047010807fcc5996 (patch)
tree7cc237f61d50f25eb5fe35bed4824d0b5796227f
parent2aa2ed1d8a3c489b0b7c1590e91f9989f2c42fb6 (diff)
downloadriscv-openocd-0d598535a30ea553f5a5d4a0047010807fcc5996.zip
riscv-openocd-0d598535a30ea553f5a5d4a0047010807fcc5996.tar.gz
riscv-openocd-0d598535a30ea553f5a5d4a0047010807fcc5996.tar.bz2
doc: replace example command "interface" with "adapter driver"
Keep documentation consisted after commands renaming. Change-Id: I97b43887cae9d7c224b07e4ba0b7d04915a19fc4 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5285 Tested-by: jenkins Reviewed-by: Marc Schink <dev@zapb.de> Reviewed-by: Oleksij Rempel <linux@rempel-privat.de>
-rw-r--r--doc/openocd.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/openocd.texi b/doc/openocd.texi
index b203656..1c89d8c 100644
--- a/doc/openocd.texi
+++ b/doc/openocd.texi
@@ -2338,7 +2338,7 @@ A few cases are so simple that you only need to say what driver to use:
@example
# jlink interface
-interface jlink
+adapter driver jlink
@end example
Most adapters need a bit more configuration than that.
@@ -2719,7 +2719,7 @@ For example, to connect remotely via TCP to the host foobar you might have
something like:
@example
-interface remote_bitbang
+adapter driver remote_bitbang
remote_bitbang_port 3335
remote_bitbang_host foobar
@end example
@@ -2728,7 +2728,7 @@ To connect to another process running locally via UNIX sockets with socket
named mysocket:
@example
-interface remote_bitbang
+adapter driver remote_bitbang
remote_bitbang_port 0
remote_bitbang_host mysocket
@end example
@@ -3036,7 +3036,7 @@ For example, the interface configuration file for a
classic ``Wiggler'' cable on LPT2 might look something like this:
@example
-interface parport
+adapter driver parport
parport_port 0x278
parport_cable wiggler
@end example