2016-07-26 07:20:54 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2016 Intel Corporation
|
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-07-26 07:20:54 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
menu "File System"
|
|
|
|
|
|
|
|
config FILE_SYSTEM
|
|
|
|
bool "File system support"
|
2016-12-09 11:14:55 +08:00
|
|
|
select DISK_ACCESS
|
2016-07-26 07:20:54 +08:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
Enables support for file system.
|
|
|
|
|
2016-10-30 21:38:33 +08:00
|
|
|
if FILE_SYSTEM
|
|
|
|
|
2016-11-08 16:21:37 +08:00
|
|
|
config FILE_SYSTEM_SHELL
|
|
|
|
bool "Enable file system shell"
|
2017-01-09 02:35:18 +08:00
|
|
|
depends on CONSOLE_SHELL
|
2016-11-08 16:21:37 +08:00
|
|
|
help
|
|
|
|
This shell provides basic browsing of the contents of the
|
|
|
|
file system.
|
|
|
|
|
2016-07-26 07:20:54 +08:00
|
|
|
config FILE_SYSTEM_FAT
|
|
|
|
bool "FAT file system support"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enables FAT file system support.
|
|
|
|
|
2016-10-30 21:38:33 +08:00
|
|
|
endif # FILE_SYSTEM
|
2016-07-31 11:46:13 +08:00
|
|
|
|
2016-07-26 07:20:54 +08:00
|
|
|
endmenu
|