forked from project-voodoo/samsung_fsr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Kconfig
70 lines (58 loc) · 1.49 KB
/
Kconfig
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#
# Unified Flash Device configuration
#
menu "LinuStoreIII Flash Devices (FSR)"
config RFS_FSR
tristate "BML block device support"
default m
help
eXtended Sector Remapper device
config RFS_FSR_STL
tristate "STL block device support"
depends on RFS_FSR
select RFS_MAPDESTROY
default m
help
STL block device support
config RFS_STL_DELETE
bool "STL delete support"
depends on RFS_FSR_STL
default y
help
STL delete support
config RFS_FSR_STL_BENCHMARK
tristate "FSR benchmark tool support"
depends on RFS_FSR
help
FSR benchmark tool.
config FSR_DUAL_VOLUME
bool "Multi Volume Flex-OneNAND support (Experimental)"
depends on RFS_FSR
default n
help
Support dual Flex-OneNAND flash memory.
config FSR_FLASH_PHYS_ADDR
hex "1st Volume Flex-OneNAND flash Physical Location"
depends on RFS_FSR
default "0x00100000"
help
This is the physical address in your flash memory the fsr will
be linked for and stored to. This address is dependent on your
own flash usage.
config FSR_FLASH_PHYS_ADDR2
hex "2nd Volume Flex-OneNAND flash Physical Location"
depends on FSR_DUAL_VOLUME
default "0x0A000000"
help
This is the physical address in your second flash memory to support
dual-chips. The fsr will be linked for and stored to. This address
is dependent on your own flash usage.
config LINUSTOREIII_DEBUG_VERBOSE
int "LinuStoreIII Debugging verbosity (0 = quiet, 3 = noisy)"
depends on RFS_FSR
default 0
config LINUSTOREIII_DEBUG
bool
depends on RFS_FSR
default y
endmenu