| # Copyright (c) 2023 Antmicro |
| # SPDX-License-Identifier: Apache-2.0 |
| bool "Ext2 file system support" |
| Enable Ext2 file system support. |
| source "subsys/logging/Kconfig.template.log_config" |
| menu "Ext2 file system Settings" |
| visible if FILE_SYSTEM_EXT2 |
| int "Maximum number of opened inodes" |
| config EXT2_MAX_BLOCK_SIZE |
| int "Maximum size of supported block" |
| This flag is used to determine size of internal structures that |
| are used to store fetched blocks. |
| config EXT2_MAX_BLOCK_COUNT |
| int "Maximum number of blocks that might be used" |
| This flag is used to determine size of internal structures that |
| are used to store fetched blocks. |
| config EXT2_DISK_STARTING_SECTOR |
| int "Ext2 starting sector" |
| The current Ext2 implementation does not support GUID Partition Table. The starting sector |
| of the file system must be specified by this option. |