aboutsummaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-07 14:50:57 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-07 14:50:57 +0000
commit74ed2d1e6065f0ab0c66677a49f0dd7f3e5a5384 (patch)
tree475053c4902016a15723805c0144bd74d9598f7e /nuttx/ChangeLog
parent36e37f5da4d016e033006db34bc8abad1d299b5d (diff)
downloadpx4-firmware-74ed2d1e6065f0ab0c66677a49f0dd7f3e5a5384.tar.gz
px4-firmware-74ed2d1e6065f0ab0c66677a49f0dd7f3e5a5384.tar.bz2
px4-firmware-74ed2d1e6065f0ab0c66677a49f0dd7f3e5a5384.zip
Updated Kconfig files from Lzyy
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4569 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog16
1 files changed, 15 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 3806700fb..2b33ec0d3 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -2620,4 +2620,18 @@
available at http://ymorin.is-a-geek.org/projects/kconfig-frontends
(version 3.3.0-1 is also available in the NuttX SVN at
trunk/misc/tools/kconfig-frontends-3.3.0-1.tar.gz). Contributed by Lzyy.
-
+ * */Kconfig: Added skeleton Kconfig files to all directories that
+ may need them.
+ * include/nuttx/math.h: Moved include/math.h to include/nuttx/math.h
+ because it conflicts too often with the system math.h (and people aren't
+ inclined to read the documentation on how to handle this). Now, if
+ CONFIG_ARCH_MATH_H=y is defined, the top-level makefile will copy
+ the redirecting math.h header file from include/nuttx/math.h to
+ include/math.h. So for the architectures that define CONFIG_ARCH_MATH_H=y,
+ include/math.h will be in place as it was before; for the architectures
+ that don't select CONFIG_ARCH_MATH_H, the redirecting math.h header
+ file will stay out-of-the-way in include/nuttx/.
+ * Kconfig, sched/Kconfig, lib/Kconfig, libxx/Kconfig, arch/sim/Kconfig,
+ drivers/Kconfig, drivers/mtd/Kconfig, drivers/input/Kconfig
+ drivers/analog/Kconfig, drivers/lcd/Kconfig: Updated kernel
+ configuration support provided by Lzyy.