summaryrefslogtreecommitdiff
path: root/apps/ChangeLog.txt
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-05-05 08:52:02 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-05-05 08:52:02 -0600
commit6029fd4a574baaaf8baef4fefa4d1ca5c082729f (patch)
tree5d9f3349abfe1fc99c96523cbb77d0ba9140d4bf /apps/ChangeLog.txt
parent52cc0b12520c403609e3e32e3e5e07e12c5f9e3b (diff)
downloadnuttx-6029fd4a574baaaf8baef4fefa4d1ca5c082729f.tar.gz
nuttx-6029fd4a574baaaf8baef4fefa4d1ca5c082729f.tar.bz2
nuttx-6029fd4a574baaaf8baef4fefa4d1ca5c082729f.zip
The alternate console device CONFIG_NSH_CONDEV must not be defined unconditionally. This causes errors when using Telnet sessions. This was solved by adding CONFIG_NSH_ALTCONDEV: CONFIG_NSH_ALTCONDEV enables or disables the feature then, if enabled, CONFIG_NSH_CONDEV provides the alternative console device name
Diffstat (limited to 'apps/ChangeLog.txt')
-rw-r--r--apps/ChangeLog.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 80acd6d39..5ece3b225 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -903,3 +903,8 @@
* apps/examples/serialblaster: Update configuration an make logic in
order to select that the serial blaster task priority and stack size.
From Bob Doiron (2014-4-30).
+ * apps/nshlib/Kconfig and other NSH files: The alternate console device
+ CONFIG_NSH_CONDEV must not be defined unconditionally. This causes errors
+ when using Telnet sessions. This was solved by adding CONFIG_NSH_ALTCONDEV:
+ CONFIG_NSH_ALTCONDEV enables or disables the feature then, if enabled,
+ CONFIG_NSH_CONDEV provides the alternative console device name (2014-5-5).