summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-03-31 11:32:00 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-03-31 11:32:00 -0600
commit218a44ad33e4ba836d7aa50dd2cf8b8bd5954b75 (patch)
tree315d0cb97739746944c7512127a9e151b354ac95 /nuttx
parent1650cb9619fc3dd23099fceaf8c41424788cd7a6 (diff)
downloadpx4-nuttx-218a44ad33e4ba836d7aa50dd2cf8b8bd5954b75.tar.gz
px4-nuttx-218a44ad33e4ba836d7aa50dd2cf8b8bd5954b75.tar.bz2
px4-nuttx-218a44ad33e4ba836d7aa50dd2cf8b8bd5954b75.zip
Update ChangeLog
Diffstat (limited to 'nuttx')
-rwxr-xr-xnuttx/ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index efe99b881..9aa527d73 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -10056,3 +10056,12 @@
the MCO1 pin). This change is not verifed for any other platforms.
From Leo Aloe3132
* Rename arch_nshinitialize() to board_app_initialize() (2015-03-30).
+ * ./*.mk, configs/.gitignore, Makefile, boardctl.c, include/nuttx/fs/ioctl,
+ include/sys/boardctl.h, syscall.h, and syscall/: Add a new non-
+ standard OS interface called boardctl(). This is similar to a driver
+ IOCTL call. But this is an IOCTL call directly on the board logic.
+ This function will eventually replace all of the ad hoc OS interfaces
+ that are current used to perform application specific initialization
+ and application driver test configuration. It essentially formalizes
+ and institutionalizes these rogue interface in to at least a single
+ crazy call (2015-03-31).