Config.in 979 B

123456789101112131415161718192021222324252627282930313233343536
  1. comment "aufs-util needs a linux kernel and a toolchain w/ threads"
  2. depends on BR2_USE_MMU
  3. depends on !BR2_LINUX_KERNEL || !BR2_TOOLCHAIN_HAS_THREADS
  4. config BR2_PACKAGE_AUFS_UTIL
  5. bool "aufs-util"
  6. depends on BR2_USE_MMU
  7. depends on BR2_LINUX_KERNEL
  8. depends on BR2_TOOLCHAIN_HAS_THREADS
  9. help
  10. Aufs command line utilities.
  11. Needs a kernel with aufs support. A kernel
  12. extension package is available.
  13. http://sourceforge.net/p/aufs/aufs-util/
  14. if BR2_PACKAGE_AUFS_UTIL
  15. config BR2_PACKAGE_AUFS_UTIL_VERSION
  16. string "aufs-util version"
  17. default ""
  18. help
  19. The version you choose must match that of the aufs support
  20. in your kernel. Usually, this is aufs3.x for 3.x kernels and
  21. aufs4.x for 4.x kernels.
  22. Usually, the sha1 of the cset you want to use; avoid using a
  23. branch name as this yields non-reproducible builds.
  24. See the following resources to see what versions are
  25. available:
  26. https://sourceforge.net/p/aufs/aufs-util/ci/master/tree/
  27. endif