Config.in 953 B

12345678910111213141516171819202122
  1. config BR2_PACKAGE_AUTOFS
  2. bool "autofs"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  4. depends on BR2_USE_MMU
  5. depends on !BR2_STATIC_LIBS # dlfcn
  6. depends on !BR2_TOOLCHAIN_USES_MUSL # nsswitch
  7. select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC
  8. help
  9. Autofs controls the operation of the automount daemons. The
  10. automount daemons automatically mount filesystems when they
  11. are used and unmount them after a period of inactivity based
  12. on a set of pre-configured maps defined by default in
  13. /etc/auto.master. The kernel automounter implements SunOS
  14. style automounter under Linux and requires a kernel version
  15. of at least 2.6.17 and the autofs4 kernel module.
  16. http://www.linuxfromscratch.org/blfs/view/svn/general/autofs.html
  17. comment "autofs needs a glibc or uClibc toolchain w/ NPTL and dynamic library"
  18. depends on BR2_USE_MMU
  19. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS \
  20. || BR2_TOOLCHAIN_USES_MUSL