blob: 3ef8e77d7a69fe012ef4b1cbf025584844fdc478 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
choice
prompt "kernel filesystem interface"
depends on ADK_PACKAGE_DAVFS2
config ADK_PACKAGE_DAVFS2_FUSE
bool "use the FUSE filesystem interface"
select ADK_PACKAGE_FUSE_UTILS
config ADK_PACKAGE_DAVFS2_CODA
bool "use the CODA filesystem interface"
select ADK_KPACKAGE_KMOD_CODA_FS
config ADK_PACKAGE_DAVFS2_BOTH
bool "use both filesystem interfaces"
select ADK_PACKAGE_FUSE_UTILS
select ADK_KPACKAGE_KMOD_CODA_FS
endchoice
|