40 lines
808 B
Plaintext
40 lines
808 B
Plaintext
|
#
|
||
|
# For a description of the syntax of this configuration file,
|
||
|
# see misc/tools/kconfig-language.txt.
|
||
|
#
|
||
|
|
||
|
config EXAMPLES_UNIONFS
|
||
|
bool "Union file system example"
|
||
|
default n
|
||
|
depends on FS_ROMFS || FS_UNIONFS
|
||
|
---help---
|
||
|
Enable the Union File System example
|
||
|
|
||
|
if EXAMPLES_UNIONFS
|
||
|
|
||
|
config EXAMPLES_UNIONFS_MOUNTPT
|
||
|
string "Union FS mount point"
|
||
|
default "/mnt/unionfs"
|
||
|
|
||
|
config EXAMPLES_UNIONFS_RAMDEVNO_A
|
||
|
int "File system 1 RAM disk device number"
|
||
|
default 1
|
||
|
|
||
|
config EXAMPLES_UNIONFS_RAMDEVNO_B
|
||
|
int "File system 1 RAM disk device number"
|
||
|
default 2
|
||
|
|
||
|
config EXAMPLES_UNIONFS_SECTORSIZE
|
||
|
int "ROMFS sector size"
|
||
|
default 64
|
||
|
|
||
|
config EXAMPLES_UNIONFS_TMPA
|
||
|
string "File system 1 temporary point"
|
||
|
default "/mnt/a"
|
||
|
|
||
|
config EXAMPLES_UNIONFS_TMPB
|
||
|
string "File system 2 temporary point"
|
||
|
default "/mnt/b"
|
||
|
|
||
|
endif
|