summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-16 10:07:11 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-16 10:07:11 -0600
commit370e5cf601805a846cf564752e45469b23169292 (patch)
tree1008ac4450d556532e7ee343328f01941f8f4934
parent53641d51bac7154e6a120af3e4776401336debab (diff)
downloadnuttx-370e5cf601805a846cf564752e45469b23169292.tar.gz
nuttx-370e5cf601805a846cf564752e45469b23169292.tar.bz2
nuttx-370e5cf601805a846cf564752e45469b23169292.zip
Update ChangeLogs
-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 147369e02..e8a18f767 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -1124,3 +1124,7 @@
newlines. However, it the USB driver is disconnected or otherwise
fails before the 3 newlines are received, the receive loop becomes a
killer, infinite loop, CPU hog. Noted by spasbyspas (2014-11-16).
+ * examples/, netutils/, nshlib/, various files: Rename
+ CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU; Add CONFIG_NET_SLIP_MTU.
+ Modify logic to handle different MTUs when both Ethernet and SLIP
+ are enabled (2014-11-16).
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 8f089492d..435dfeea3 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -8995,3 +8995,7 @@
* arch/arm/src/efm32/efm32_lowputc.c: EFM32 USART setup: Computation of
BAUD includes shift; Eliminate additional shift. From Pierre-noel
Bouteville (2014-11-16).
+ * net/, include/, drivers/, arch/, various files: Rename
+ CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU; Add CONFIG_NET_SLIP_MTU.
+ Add data structures and logic to handle different MTUs when both
+ Ethernet and SLIP are enabled (2014-11-16).