diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-05-24 05:50:39 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-05-24 05:50:39 +0000 |
commit | 5396ecbf61270ffe7f6a6241c93c100a534295b2 (patch) | |
tree | 967e9768c254a5b2d3099ea4a9a3009d538b3deb /package/fuse | |
parent | 587d993ab6ecb9ee7611b5a53596adfb826e9642 (diff) | |
download | upstream-5396ecbf61270ffe7f6a6241c93c100a534295b2.tar.gz upstream-5396ecbf61270ffe7f6a6241c93c100a534295b2.tar.bz2 upstream-5396ecbf61270ffe7f6a6241c93c100a534295b2.zip |
Fix and standardize Config.in
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1046 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/fuse')
-rw-r--r-- | package/fuse/Config.in | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/package/fuse/Config.in b/package/fuse/Config.in index 2973a3e11c..92852bf1cb 100644 --- a/package/fuse/Config.in +++ b/package/fuse/Config.in @@ -1,7 +1,14 @@ +config BR2_PACKAGE_FUSE + bool + default n + depends BR2_PACKAGE_KMOD_FUSE + config BR2_PACKAGE_KMOD_FUSE select BR2_PACKAGE_FUSE - tristate "kmod-fuse - FUSE kernel module" + prompt "kmod-fuse - FUSE kernel module" + tristate default m if CONFIG_DEVEL + select BR2_PACKAGE_FUSE help With FUSE it is possible to implement a fully functional filesystem in a userspace program. @@ -19,10 +26,12 @@ config BR2_PACKAGE_KMOD_FUSE http://fuse.sourceforge.net/ - Depends: libpthread + This package contains the fuse.o kernel module. + config BR2_PACKAGE_LIBFUSE - tristate "libfuse - FUSE library" + prompt "libfuse - FUSE library" + tristate default m if CONFIG_DEVEL depends BR2_PACKAGE_KMOD_FUSE select BR2_PACKAGE_LIBPTHREAD @@ -43,10 +52,14 @@ config BR2_PACKAGE_LIBFUSE http://fuse.sourceforge.net/ + This package contains the fuse shared library, needed by other programs. + Depends: libpthread + config BR2_PACKAGE_FUSE_UTILS - tristate "fuse-utils - FUSE utilities" + prompt "fuse-utils - FUSE utilities" + tristate default m if CONFIG_DEVEL depends BR2_PACKAGE_LIBFUSE select BR2_PACKAGE_LIBPTHREAD @@ -67,10 +80,5 @@ config BR2_PACKAGE_FUSE_UTILS http://fuse.sourceforge.net/ - Depends: libpthread - - -config BR2_PACKAGE_FUSE - tristate - default BR2_PACKAGE_KMOD_FUSE - + This package contains the fusermount userland utility. + |