๐Ÿ“ฆ apache / nuttx

๐Ÿ“„ Kconfig ยท 51 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51#
# 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

config TXTABLE_PARTITION
	bool "TXTABLE support"
	default n

if TXTABLE_PARTITION

config TXTABLE_PARTITION_MAX_NUM
	int "Max num of TXTABLE partition(s)"
	default 16
	---help---
		Include one pseudo partition named "txtable"

config TXTABLE_DEFAULT_PARTITION
	int "Enable default txtable"
	default 0
	---help---
		0: Disable
		1: Enable

config TXTABLE_DEFAULT_PARTITION_PATH
	string "Path of default txtable in device"
	default "/etc/txtable.txt"
	depends on TXTABLE_DEFAULT_PARTITION != 0

endif

endmenu

endif