From fccc3fcfc299f9107ad01d9258bd1ab7a93655e1 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Sat, 13 Nov 2004 17:04:55 +0000 Subject: [PATCH] There's no reason for "read" and "echo" commands to not appear in the online command list. --- sys/boot/common/commands.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/boot/common/commands.c b/sys/boot/common/commands.c index 5ec00606693..0559d1558c4 100644 --- a/sys/boot/common/commands.c +++ b/sys/boot/common/commands.c @@ -312,7 +312,7 @@ command_unset(int argc, char *argv[]) return(CMD_OK); } -COMMAND_SET(echo, "echo", NULL, command_echo); +COMMAND_SET(echo, "echo", "echo arguments", command_echo); static int command_echo(int argc, char *argv[]) @@ -351,7 +351,7 @@ command_echo(int argc, char *argv[]) * A passable emulation of the sh(1) command of the same name. */ -COMMAND_SET(read, "read", NULL, command_read); +COMMAND_SET(read, "read", "read input from the terminal", command_read); static int command_read(int argc, char *argv[])