fs/tmpfs: Add an unfinished implementation of tmpfs

This commit is contained in:
Gregory Nutt
2015-10-08 12:26:35 -06:00
parent e947ea587d
commit e91f82b0f8
3 changed files with 1293 additions and 9 deletions
+8 -8
View File
@@ -1,7 +1,7 @@
############################################################################
# fs/romfs/Make.defs
# fs/tmpfs/Make.defs
#
# Copyright (C) 2008, 2011, 2013 Gregory Nutt. All rights reserved.
# Copyright (C) 2015 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -33,15 +33,15 @@
#
############################################################################
ifeq ($(CONFIG_FS_ROMFS),y)
# Files required for ROMFS file system support
ifeq ($(CONFIG_FS_TMPFS),y)
# Files required for TMPFS file system support
ASRCS +=
CSRCS += fs_romfs.c fs_romfsutil.c
CSRCS += fs_tmpfs.c
# Include ROMFS build support
# Include TMPFS build support
DEPPATH += --dep-path romfs
VPATH += :romfs
DEPPATH += --dep-path tmpfs
VPATH += :tmpfs
endif