summaryrefslogtreecommitdiff
path: root/nuttx/FlatLibs.mk
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-03-31 11:25:52 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-03-31 11:25:52 -0600
commit1650cb9619fc3dd23099fceaf8c41424788cd7a6 (patch)
tree0bd157c8e2bffc9676ffa863b196d9174b629688 /nuttx/FlatLibs.mk
parente370b8f46c0a4b28c3ebf5fddca2c256a85227cc (diff)
downloadpx4-nuttx-1650cb9619fc3dd23099fceaf8c41424788cd7a6.tar.gz
px4-nuttx-1650cb9619fc3dd23099fceaf8c41424788cd7a6.tar.bz2
px4-nuttx-1650cb9619fc3dd23099fceaf8c41424788cd7a6.zip
boardctl(): Add a new non-standard OS interface. 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 intialiation and application driver test confifuration. It essentially formalizes and institutionalizes these rogue interface in to at least a single crazy call.
Diffstat (limited to 'nuttx/FlatLibs.mk')
-rw-r--r--nuttx/FlatLibs.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/nuttx/FlatLibs.mk b/nuttx/FlatLibs.mk
index 5bac59aed..c0ebca829 100644
--- a/nuttx/FlatLibs.mk
+++ b/nuttx/FlatLibs.mk
@@ -45,6 +45,10 @@
NUTTXLIBS = lib$(DELIM)libsched$(LIBEXT)
USERLIBS =
+# Add libraries for board support
+
+NUTTXLIBS = lib$(DELIM)libconfigs$(LIBEXT)
+
# Add libraries for syscall support.
NUTTXLIBS += lib$(DELIM)libc$(LIBEXT) lib$(DELIM)libmm$(LIBEXT)