Reverse revision 1691: all of its functionality has migrated elsewhere.

git-svn-id: svn://svn.berlios.de/openocd/trunk@1694 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
zwelch
2009-05-10 21:33:53 +00:00
parent a24ab3ae38
commit 104580e0bf
4 changed files with 1 additions and 545 deletions

View File

@@ -17,7 +17,7 @@ endif
libhelper_a_SOURCES = \
binarybuffer.c $(CONFIGFILES) configuration.c \
log.c command.c time_support.c tclapi.c \
log.c command.c time_support.c \
replacements.c fileio.c startup_tcl.c
if IOUTIL

File diff suppressed because it is too large Load Diff

View File

@@ -1,26 +0,0 @@
/***************************************************************************
* Copyright (C) 2009 by Zachary T Welch <zw@superlucidity.net> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef TCLAPI_H
#define TCLAPI_H
#include "command.h"
int tclapi_register_commands(struct command_context_s *ctx);
#endif // TCLAPI_H

View File

@@ -41,7 +41,6 @@
#include "mflash.h"
#include "command.h"
#include "tclapi.h"
#include "server.h"
#include "telnet_server.h"
#include "gdb_server.h"
@@ -203,7 +202,6 @@ command_context_t *setup_command_handler(void)
telnet_register_commands(cmd_ctx);
gdb_register_commands(cmd_ctx);
tcl_register_commands(cmd_ctx); /* tcl server commands */
tclapi_register_commands(cmd_ctx); /* misc tcl commands */
log_register_commands(cmd_ctx);
jtag_register_commands(cmd_ctx);
xsvf_register_commands(cmd_ctx);