summaryrefslogtreecommitdiff
path: root/nuttx/drivers/Makefile
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-01-13 17:50:25 +0100
committerJakob Odersky <jodersky@gmail.com>2015-01-13 17:50:25 +0100
commit91a0741c191bd1f983621b92f6816c68799b05d0 (patch)
treee1d51bf631a1af2967fc4898c50c01fa49322eb6 /nuttx/drivers/Makefile
parentf2c417a2af5816b562516d40532498db3d4d12b6 (diff)
downloadnuttx-91a0741c191bd1f983621b92f6816c68799b05d0.tar.gz
nuttx-91a0741c191bd1f983621b92f6816c68799b05d0.tar.bz2
nuttx-91a0741c191bd1f983621b92f6816c68799b05d0.zip
apply patch to fix inodes
Diffstat (limited to 'nuttx/drivers/Makefile')
-rw-r--r--nuttx/drivers/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/drivers/Makefile b/nuttx/drivers/Makefile
index 05aed285b..dec5903ea 100644
--- a/nuttx/drivers/Makefile
+++ b/nuttx/drivers/Makefile
@@ -70,10 +70,10 @@ include video$(DELIM)Make.defs
include wireless$(DELIM)Make.defs
ifneq ($(CONFIG_NFILE_DESCRIPTORS),0)
- CSRCS += dev_null.c dev_zero.c loop.c
+ CSRCS += dev_null.c dev_zero.c
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)
- CSRCS += ramdisk.c
+ CSRCS += ramdisk.c loop.c
ifeq ($(CONFIG_DRVR_WRITEBUFFER),y)
CSRCS += rwbuffer.c
else