summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-16 17:37:40 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-16 17:37:40 +0000
commita45f710f8fdb5b9cf11fbdcb2a74cb5007ea79fd (patch)
tree8e50d03ca5238eb88b8cc8125f8db19ba72436a9 /nuttx/ChangeLog
parentd980ce2cdc1816e4d5df9a1c2ff9e647c6cb7540 (diff)
downloadpx4-nuttx-a45f710f8fdb5b9cf11fbdcb2a74cb5007ea79fd.tar.gz
px4-nuttx-a45f710f8fdb5b9cf11fbdcb2a74cb5007ea79fd.tar.bz2
px4-nuttx-a45f710f8fdb5b9cf11fbdcb2a74cb5007ea79fd.zip
Fix bad conditional logic in mkconfig.c; Add user-mode pthread start-up logic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5748 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index ae585ae33..9074c2895 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -4332,3 +4332,16 @@
Ryan Sundberg. (2013-03-14).
6.27 2013-xx-xx Gregory Nutt <gnutt@nuttx.org>
+
+ * arch/arm/src/armv7-m/up_mpu.c: Correct MPU sub-region settings for
+ unaligned regions (2013-03-15).
+ * arch/arm/src/armv6-m/up_svcall.c: Bring up to equivalent to the
+ ARMv7-M version (2013-03-15).
+ * configs/lm4f120-launchpad/tools: Add scripts and instructions to
+ simplify use of OpenOCD with ICDI (from JP Carballo, 2013-03-15).
+ * tools/mkconfig.c: Logic that attempts to suppressed buffered I/O
+ within the kernel is wrong. sizeof(struct file_struct) must be
+ the same in both kernel- and user-spaces (2013-03-16).
+ * arch/arm/src/common/up_pthread_start.c, nuttx/libc/pthread/pthread_startup.c,
+ and related files: Implement switch to user-space and user-space
+ pthread start-up function (2013-03-16).