summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-02-14 06:41:42 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-02-14 06:41:42 -0600
commit6053c8eb496132e784c389c9b979d835019b428c (patch)
treed235e32eb83d767b3e7beb13d825b36f6ede4e10
parent45cd51e3fccab3239bfe7693d3b8ac5c85bf794a (diff)
downloadnuttx-6053c8eb496132e784c389c9b979d835019b428c.tar.gz
nuttx-6053c8eb496132e784c389c9b979d835019b428c.tar.bz2
nuttx-6053c8eb496132e784c389c9b979d835019b428c.zip
Update ChangeLog
-rwxr-xr-xnuttx/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 9082158e8..c985357ea 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -9803,3 +9803,10 @@
* net/icmpv6/icmpv6_advertise.c and icmpv6_solicit.c: Add inclusion of
nuttx/net.h to two files. Without these there can be compilation errors
in certain configurations. From Max Neklyudov (2015-02-13).
+ * net/net_initialize.c, sched/init/os_start.c, and a few other files:
+ Divide net_intiialize() into net_setup() and net_initialize() to solve
+ a chicken-and-egg problem. net_setup() must be called before
+ up_initialize() is called so that networking data structures are ready
+ to register new network devices. net_initialize() now does only timer
+ related operations and is called AFTER up_initialize() where the timers
+ are configured. Problem note by Max Neklyudov (2015-02-14).