44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
#
|
|
# 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.
|
|
#
|
|
|
|
menu "File System"
|
|
|
|
config FILE_SYSTEM
|
|
bool "File system support"
|
|
select DISK_ACCESS
|
|
default n
|
|
help
|
|
Enables support for file system.
|
|
|
|
if FILE_SYSTEM
|
|
|
|
config FILE_SYSTEM_SHELL
|
|
bool "Enable file system shell"
|
|
depends on CONSOLE_SHELL
|
|
help
|
|
This shell provides basic browsing of the contents of the
|
|
file system.
|
|
|
|
config FILE_SYSTEM_FAT
|
|
bool "FAT file system support"
|
|
default y
|
|
help
|
|
Enables FAT file system support.
|
|
|
|
endif # FILE_SYSTEM
|
|
|
|
endmenu
|