aboutsummaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 16608fc25..bd20c19dd 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -2563,3 +2563,11 @@
for use within the OS.
* arch/mips/src/pic32mx/pic32mx_ethernet.c: The PIC32 Ethernet driver
is now stable on the PIC32 Starter Kit.
+ * configs/pic32-starterkit/nsh2: Add a PIC32 Ethernet Starter Kit NSH
+ configuration that has no serial console; all interaction is done via
+ Telnet.
+ * net/netdev_sem.c: Correct a deadlock condition by making a seamphore
+ recursive. To my knowledge this deadlock only occurs when running the
+ NSH command ifconfig over Telnet. In that case the function netdev_foreach
+ takes the network device semaphore, but so does the telnet logic causing
+ the deadlock.