From db3cdcf7ccccd4d820b31ae5efd42c0d54ae33e2 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 29 Sep 2014 16:46:31 -0600 Subject: [PATCH] Add a framework that may someday support shared memory objects in the VFS --- fs/Kconfig | 2 ++ fs/Makefile | 1 + 2 files changed, 3 insertions(+) diff --git a/fs/Kconfig b/fs/Kconfig index cbb7c6ed91..9165814dcd 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -49,6 +49,8 @@ config FS_WRITABLE default n source fs/semaphore/Kconfig +source fs/mqueue/Kconfig +source fs/shm/Kconfig source fs/mmap/Kconfig source fs/fat/Kconfig source fs/nfs/Kconfig diff --git a/fs/Makefile b/fs/Makefile index d74fa4f2d8..2d3a974224 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -53,6 +53,7 @@ include mmap/Make.defs include semaphore/Make.defs include mqueue/Make.defs +include shm/Make.defs # Additional files required is mount-able file systems are supported