summaryrefslogtreecommitdiff
path: root/apps/nshlib
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-15 14:57:53 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-15 14:57:53 +0000
commitf1893cbaf513c7f0fbca77240fc59707ad039734 (patch)
tree4a5128533aa866afa19719584a764f0f83b9d165 /apps/nshlib
parentc548df2a3788bfe7527f7fef439d1365cb095e7c (diff)
downloadnuttx-f1893cbaf513c7f0fbca77240fc59707ad039734.tar.gz
nuttx-f1893cbaf513c7f0fbca77240fc59707ad039734.tar.bz2
nuttx-f1893cbaf513c7f0fbca77240fc59707ad039734.zip
Add time and uptime
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3506 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/nshlib')
-rw-r--r--apps/nshlib/nsh_parse.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/nshlib/nsh_parse.c b/apps/nshlib/nsh_parse.c
index fe7423f66..a4c3c893d 100644
--- a/apps/nshlib/nsh_parse.c
+++ b/apps/nshlib/nsh_parse.c
@@ -52,6 +52,8 @@
#include <errno.h>
#include <debug.h>
+#include <nuttx/version.h>
+
#ifndef CONFIG_NSH_DISABLEBG
# include <pthread.h>
#endif
@@ -341,8 +343,22 @@ static const struct cmdmap_s g_cmdmap[] =
* Public Data
****************************************************************************/
+/* If NuttX versioning information is available, Include that information
+ * in the NSH greeting.
+ */
+
+#if CONFIG_VERSION_MAJOR != 0 || CONFIG_VERSION_MINOR != 0
+const char g_nshgreeting[] = "\nNuttShell (NSH) NuttX-" CONFIG_VERSION_STRING "\n
+#else
const char g_nshgreeting[] = "\nNuttShell (NSH)\n";
+#endif
+
+/* The NSH prompt */
+
const char g_nshprompt[] = "nsh> ";
+
+/* Common, message formats */
+
const char g_nshsyntax[] = "nsh: %s: syntax error\n";
const char g_fmtargrequired[] = "nsh: %s: missing required argument(s)\n";
const char g_fmtarginvalid[] = "nsh: %s: argument invalid\n";