diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html
index 54019b33cef..5dcf3638248 100644
--- a/Documentation/NuttShell.html
+++ b/Documentation/NuttShell.html
@@ -377,37 +377,43 @@
|
- 2.49 Unset an Environment Variable (unset)
+ 2.49 Print system information (uname)
|
|
- 2.50 URL Decode (urldecode)
+ 2.50 Unset an Environment Variable (unset)
|
|
- 2.51 URL Encode (urlencode)
+ 2.51 URL Decode (urldecode)
|
|
- 2.52 Wait for Microseconds (usleep)
+ 2.52 URL Encode (urlencode)
|
|
- 2.53 Get File Via HTTP (wget)
+ 2.53 Wait for Microseconds (usleep)
|
|
- 2.54 Hexadecimal Dump of Memory (xd)
+ 2.54 Get File Via HTTP (wget)
+ |
+
+
+
|
+
+ 2.55 Hexadecimal Dump of Memory (xd)
|
@@ -2437,7 +2443,68 @@ nsh>
+
+Command Syntax:
+
+uname [-a | -imnoprsv]
+
+
+ Synopsis.
+ Print certain system information. With no options, the output is the same as -s.
+
+
+
+ -a |
+
+ Print all information, in the following order, except omit -p and -i if unknown:
+ |
+
+
+ -s, -o |
+
+ Print the operating system name (NuttX)
+ |
+
+
+ -n |
+
+ Print the network node hostname (only availabel if CONFIG_NET=y)
+ |
+
+
+ -r |
+
+ Print the kernel release
+ |
+
+
+ -v |
+
+ Print the kernel version
+ |
+
+
+ -m |
+
+ Print the machine hardware name
+ |
+
+
+ -p, -i |
+
+ Print "unknown"
+ |
+
+
+
+
@@ -2463,7 +2530,7 @@ nsh>
@@ -2480,7 +2547,7 @@ urldecode [-f] <string or filepath>
@@ -2497,7 +2564,7 @@ urlencode [-f] <string or filepath>
@@ -2514,7 +2581,7 @@ usleep <usec>
@@ -2541,7 +2608,7 @@ wget [-o <local-path>] <url>
@@ -2862,6 +2929,11 @@ nsh>
!CONFIG_DISABLE_MOUNTPOINT && CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_FS_READABLE3 |
CONFIG_NSH_DISABLE_UMOUNT |
+
+ uname |
+ br |
+ CONFIG_NSH_DISABLE_UNAME |
+
unset |
!CONFIG_DISABLE_ENVIRON |
@@ -4405,6 +4477,7 @@ mount -t vfat /dev/ram1 /tmp
test
up_cxxinitialize()
umount
+ uname
unset
until
up_nsh.c