fs: Move file system code to subsys/

Subsystems code will reside in subsys/ folder. This patch creates the
folder and moves FS code there.

Jira: ZEP-1120
Change-Id: If3b1bcb996c5fbd4056cd5d1920d41d29810d6b2
Signed-off-by: Ramesh Thomas <ramesh.thomas@intel.com>
This commit is contained in:
Ramesh Thomas 2016-10-29 04:10:36 -07:00 committed by Anas Nashif
parent f18f861bbd
commit e354ad2a36
10 changed files with 23 additions and 4 deletions

View file

@ -32,7 +32,7 @@ source "misc/Kconfig"
source "lib/Kconfig"
source "fs/Kconfig"
source "subsys/Kconfig"
source "ext/Kconfig"

View file

@ -188,7 +188,7 @@ M: Ramesh Thomas <ramesh.thomas@intel.com>
M: Kuo-Lang Tseng <kuo-lang.tseng@intel.com>
S: Supported
F: ext/fs/
F: fs/
F: subsys/fs/
F: include/fs/
F: include/fs.h
F: samples/fs/

View file

@ -579,9 +579,9 @@ endif # $(dot-config)
# Unified kernel objects are built as a static library
ifeq ($(CONFIG_KERNEL_V2),y)
libs-y := kernel/unified/
core-y := lib/ misc/ net/ boards/ ext/ usb/ fs/ tests/ arch/
core-y := lib/ misc/ net/ boards/ ext/ usb/ subsys/ tests/ arch/
else
core-y := lib/ kernel/ misc/ net/ boards/ ext/ usb/ fs/ tests/ arch/
core-y := lib/ kernel/ misc/ net/ boards/ ext/ usb/ subsys/ tests/ arch/
endif
drivers-y := drivers/

18
subsys/Kconfig Normal file
View file

@ -0,0 +1,18 @@
# Kconfig - Subsystem configuration options
#
# Copyright (c) 2016 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
source "subsys/fs/Kconfig"

1
subsys/Makefile Normal file
View file

@ -0,0 +1 @@
obj-$(CONFIG_FILE_SYSTEM) += fs/