From c4250420ce86d3579867962d6038616967a33353 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Fri, 29 Feb 2008 00:07:03 +0000 Subject: [PATCH] As adding some commands to the telnet server shell doesn't seem to be desirable in the application it's now done in the gui-specific code. --- apps/telnetd/telnetd-gui.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/telnetd/telnetd-gui.c b/apps/telnetd/telnetd-gui.c index cbfa920ba..4134fde8d 100644 --- a/apps/telnetd/telnetd-gui.c +++ b/apps/telnetd/telnetd-gui.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki desktop OS. * - * $Id: telnetd-gui.c,v 1.4 2008/02/09 18:51:56 oliverschmidt Exp $ + * $Id: telnetd-gui.c,v 1.5 2008/02/29 00:07:03 oliverschmidt Exp $ * */ @@ -82,6 +82,12 @@ telnetd_gui_quit(void) void telnetd_gui_init(void) { + shell_file_init(); + shell_ps_init(); + shell_run_init(); + shell_text_init(); + shell_time_init(); + ctk_window_new(&window, XSIZE, YSIZE, "Shell server"); CTK_WIDGET_ADD(&window, &loglabel); memset(log, 0, sizeof(log));