From d84fead487b120774e18c03664a0a361616429fc Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20Harboe?= Date: Wed, 2 Dec 2009 12:45:12 +0100 Subject: [PATCH] zy1000: keep up with startup refactoring work. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit keep up with server_init() introduction. Signed-off-by: Øyvind Harboe --- src/ecosboard.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ecosboard.c b/src/ecosboard.c index 36e807ef79..dcd497ce9e 100644 --- a/src/ecosboard.c +++ b/src/ecosboard.c @@ -1113,6 +1113,11 @@ int main(int argc, char *argv[]) command_run_linef(cmd_ctx, "script /rom/openocd.cfg"); + int ret; + ret = server_init(cmd_ctx); + if (ERROR_OK != ret) + return EXIT_FAILURE; + /* we MUST always run the init command as it will launch telnet sessions */ command_run_line(cmd_ctx, "init"); -- 2.30.2