summaryrefslogtreecommitdiff
path: root/src/helper/startup.tcl
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-11-05 08:48:50 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-11-05 08:48:50 +0000
commit71c73068858ad80020c7956a215a5ec590704ddb (patch)
treea7e3d4e0e1d0f093a38f0e2cfda775433ff19c43 /src/helper/startup.tcl
parentbbafcb3758ac315b94ac54e88ab2dafe8377e062 (diff)
downloadopenocd+libswd-71c73068858ad80020c7956a215a5ec590704ddb.tar.gz
openocd+libswd-71c73068858ad80020c7956a215a5ec590704ddb.tar.bz2
openocd+libswd-71c73068858ad80020c7956a215a5ec590704ddb.tar.xz
openocd+libswd-71c73068858ad80020c7956a215a5ec590704ddb.zip
fix telnet async messages. retired telnet_async command - no user serviceable parts inside.
git-svn-id: svn://svn.berlios.de/openocd/trunk@1135 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/startup.tcl')
-rw-r--r--src/helper/startup.tcl15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/helper/startup.tcl b/src/helper/startup.tcl
index 794654c6..f4396710 100644
--- a/src/helper/startup.tcl
+++ b/src/helper/startup.tcl
@@ -302,21 +302,6 @@ proc verify {args} {
add_help_text verify "synonym to verify_image"
-add_help_text telnet_async "<enable/disable> - enable/disable async messages. Default 0."
-
-global telnet_async_state
-set telnet_async_state 0
-proc telnet_async {state} {
- global telnet_async_state
- if {[string compare $state enable]==0} {
- set telnet_async_state 1
- } elseif {[string compare $state disable]==0} {
- set telnet_async_state 0
- } else {
- return -code error "Illegal option $state"
- }
-}
-
add_help_text cpu "<name> - prints out target options and a comment on CPU which matches name"