nuttx/fs/partition/Kconfig
Jiuzhu Dong b5b00c6ba3 fs/partition: support parse gpt partition
Signed-off-by: Jiuzhu Dong <dongjiuzhu1@xiaomi.com>
2021-10-30 01:24:09 -05:00

25 lines
362 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if !DISABLE_MOUNTPOINT
menu "Partition Table"
config PTABLE_PARTITION
bool "PTABLE support"
default n
config MBR_PARTITION
bool "MBR support"
default n
config GPT_PARTITION
bool "GPT support"
default n
endmenu
endif