From 4cf168784506ca8f3878d10af277433d08330fc4 Mon Sep 17 00:00:00 2001 From: matsutsuka Date: Wed, 2 Jul 2008 15:03:44 +0000 Subject: [PATCH] shell is removed temporarily since it doesn't work in the current version. --- platform/pc-6001/contiki-main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platform/pc-6001/contiki-main.c b/platform/pc-6001/contiki-main.c index 2fe6ade5b..db893b588 100644 --- a/platform/pc-6001/contiki-main.c +++ b/platform/pc-6001/contiki-main.c @@ -27,7 +27,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: contiki-main.c,v 1.1 2007/09/11 12:12:59 matsutsuka Exp $ + * $Id: contiki-main.c,v 1.2 2008/07/02 15:03:44 matsutsuka Exp $ * */ @@ -67,13 +67,13 @@ main(void) #if WITH_LOADER_ARCH program_handler_add(&directory_dsc, "Directory", 1); program_handler_add(&processes_dsc, "Processes", 1); - program_handler_add(&shell_dsc, "Command shell", 1); + // program_handler_add(&shell_dsc, "Command shell", 1); #else program_handler_add(&processes_dsc, "Processes", 1); program_handler_add(&mttest_dsc, "Multithread", 1); // program_handler_add(&calc_dsc, "Calculator", 1); program_handler_add(&about_dsc, "About", 1); - program_handler_add(&shell_dsc, "Command shell", 1); +// program_handler_add(&shell_dsc, "Command shell", 1); #endif while(1) {