summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/ChangeLog.txt4
-rwxr-xr-xnuttx/ChangeLog4
2 files changed, 8 insertions, 0 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 5d895b39a..84c3bb327 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -1224,3 +1224,7 @@
* apps/netutils/Kconfig, Make.defs, and pppd/: Add a PPP daemon. From
Max Neklyudov (2015-03-11).
* Rename arch_nshinitialize() to board_app_initialize() (2015-03-30).
+ * apps/nshlib: NSH initialization now calls boardctl(BOARDIOC_INIT)
+ instead of board_app_initaliaze(). Remove support for
+ CONFIG_NSH_ARCHMAC. It is not used and there are better ways to do
+ that operation (2015-03-31).
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 9aa527d73..ce177d40e 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -10065,3 +10065,7 @@
and application driver test configuration. It essentially formalizes
and institutionalizes these rogue interface in to at least a single
crazy call (2015-03-31).
+ * configs/: Modify all configurations: Make sure that
+ CONFIG_LIB_BOARDCTL=y appears wherever CONFIG_NSH_ARCHINIT=y appears.
+ Remove support for CONFIG_NSH_ARCHMAC. It is not used and there are
+ better ways to do that operation (2015-03-31).